Skip to content

Commit 3131716

Browse files
committed
Fix HHVM issue with Ubuntu Xenial
1 parent d3b6c16 commit 3131716

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ee/cli/plugins/stack.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,8 @@ def post_pref(self, apt_packages, packages):
739739

740740
EEFileUtils.searchreplace(self, "/etc/hhvm/server.ini",
741741
"9000", "8000")
742-
EEFileUtils.searchreplace(self, "/etc/nginx/hhvm.conf",
742+
if not EEVariables.ee_platform_codename == 'xenial':
743+
EEFileUtils.searchreplace(self, "/etc/nginx/hhvm.conf",
743744
"9000", "8000")
744745

745746
with open("/etc/hhvm/php.ini", "a") as hhvm_file:

0 commit comments

Comments
 (0)