Browse Source

nginx install validation check

develop
Prabuddha Chakraborty 9 years ago
parent
commit
529508c989
  1. 2
      ee/cli/plugins/stack.py

2
ee/cli/plugins/stack.py

@ -1659,7 +1659,7 @@ class EEStackController(CementBaseController):
if self.app.pargs.nginx:
Log.debug(self, "Setting apt_packages variable for Nginx")
if not EEAptGet.is_installed(self, 'nginx-custom'):
if not (EEAptGet.is_installed(self, 'nginx-custom') or EEAptGet.is_installed(self, 'nginx-mainline')):
if not EEAptGet.is_installed(self, 'nginx-plus'):
apt_packages = apt_packages + EEVariables.ee_nginx
else:

Loading…
Cancel
Save