Fix mariaDB key

This commit is contained in:
VirtuBox
2019-10-09 17:35:23 +02:00
parent 8d47374c2a
commit ab6d44afd4
3 changed files with 6 additions and 7 deletions

View File

@@ -168,14 +168,14 @@ class WOStackController(CementBaseController):
if WOAptGet.is_installed(self, 'nginx-plus'):
Log.info(self, "NGINX PLUS Detected ...")
apt = ["nginx-plus"] + WOVar.wo_nginx
self.post_pref(apt, empty_packages)
post_pref(self, apt, empty_packages)
elif WOAptGet.is_installed(self, 'nginx'):
Log.info(self, "WordOps detected an already "
"installed nginx package."
"It may or may not have "
"required modules.\n")
apt = ["nginx"] + WOVar.wo_nginx
self.post_pref(apt, empty_packages)
post_pref(self, apt, empty_packages)
else:
Log.debug(self, "Nginx already installed")