From a17208286f779b9dec4fe624859b09bebac35b15 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Tue, 21 Apr 2015 12:48:21 +0530 Subject: [PATCH] Fixed issue with debian nginx installation --- ee/cli/plugins/site_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/cli/plugins/site_functions.py b/ee/cli/plugins/site_functions.py index 6dac2414..630160cc 100644 --- a/ee/cli/plugins/site_functions.py +++ b/ee/cli/plugins/site_functions.py @@ -534,7 +534,7 @@ def site_package_check(self, stype): if stype in ['html', 'php', 'mysql', 'wp', 'wpsubdir', 'wpsubdomain']: Log.debug(self, "Setting apt_packages variable for Nginx") - if EEVariables.ee_platform_distro == 'Debian': + if EEVariables.ee_platform_distro == 'debian': check_nginx = 'nginx-extras' else: check_nginx = 'nginx-custom'