Skip to content

Commit 04040b4

Browse files
committed
Merge tag 'v3.6.1' into develop
EasyEngine v3.6.1
2 parents 9974adb + f615d5e commit 04040b4

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v3.6.1 - May 20, 2016
2+
- Fix HHVM Support on Ubuntu Xenial
3+
14
v3.6.0 - May 16, 2016
25
- Add support for Ubuntu 16.04 LTS - Xenial.
36
- Updated Nginx to the latest stable version (1.10.1)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ EasyEngine (ee) is a python tool, which makes it easy to manage your wordpress s
88

99
**EasyEngine currently supports:**
1010

11-
- Ubuntu 12.04 & 14.04
11+
- Ubuntu 12.04 & 14.04 & 16.04
1212
- Debian 7 & 8
1313

1414
**Port Requirements:**

ee/cli/plugins/stack.py

Lines changed: 2 additions & 5 deletions
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:
@@ -1065,10 +1066,6 @@ def post_pref(self, apt_packages, packages):
10651066
self.app.render((data), 'php-fpm.mustache', out=ee_php_fpm)
10661067
ee_php_fpm.close()
10671068

1068-
1069-
1070-
1071-
10721069
# Parse /etc/php/5.6/fpm/pool.d/www.conf
10731070
config = configparser.ConfigParser()
10741071
config.read_file(codecs.open('/etc/php/5.6/fpm/pool.d/www.conf',

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.6.0"
15+
ee_version = "3.6.1"
1616

1717

1818
# EasyEngine packages versions

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fi
4848
# Define variables for later use
4949
ee_branch=$1
5050
readonly ee_version_old="2.2.3"
51-
readonly ee_version_new="3.6.0"
51+
readonly ee_version_new="3.6.1"
5252
readonly ee_log_dir=/var/log/ee/
5353
readonly ee_install_log=/var/log/ee/install.log
5454
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
5959

6060
setup(name='ee',
61-
version='3.6.0',
61+
version='3.6.1',
6262
description=long_description,
6363
long_description=long_description,
6464
classifiers=[],

0 commit comments

Comments
 (0)