From db69444cd928b77df5aaf9616cd22d9875a73fbd Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Mon, 11 Jan 2016 20:35:46 +0530 Subject: [PATCH] install nginx --- ee/cli/plugins/stack.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ee/cli/plugins/stack.py b/ee/cli/plugins/stack.py index 9424a935..cad46bd7 100644 --- a/ee/cli/plugins/stack.py +++ b/ee/cli/plugins/stack.py @@ -1704,6 +1704,7 @@ class EEStackController(CementBaseController): EEAptGet.auto_remove(self) Log.info(self, "Removing repository for NGINX MAINLINE,") EERepo.remove(self, repo_url=EEVariables.ee_nginx_dev_repo) + apt_packages = apt_packages + EEVariables.ee_nginx if self.app.pargs.nginxmainline: if EEVariables.ee_nginx_dev_repo == None: @@ -1730,6 +1731,7 @@ class EEStackController(CementBaseController): Log.debug(self, "Removing apt_packages variable of Nginx") EEFileUtils.remove(self, EEVariables.ee_nginx) EEAptGet.auto_remove(self) + apt_packages = apt_packages + EEVariables.ee_nginx_dev