From 1ad3cc6219151e81e38057054edb2ce4ab96a4b3 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Fri, 23 Jan 2015 18:14:43 +0530 Subject: [PATCH] Fixed Nginx common dependencies --- ee/core/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/core/variables.py b/ee/core/variables.py index 986d4f9c..d00b5c5d 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -67,11 +67,11 @@ class EEVariables(): # Nginx repo and packages if ee_platform_distro == 'Ubuntu': ee_nginx_repo = "ppa:rtcamp/nginx" - ee_nginx = ["nginx-custom"] + ee_nginx = ["nginx-custom", "nginx-common"] elif ee_platform_distro == 'debian': ee_nginx_repo = ("deb http://packages.dotdeb.org {codename} all" .format(codename=ee_platform_codename)) - ee_nginx = ["nginx-full"] + ee_nginx = ["nginx-full", "nginx-common"] # PHP repo and packages if ee_platform_distro == 'Ubuntu':