Skip to content

Commit 73ee53d

Browse files
committed
Merge branch 'hotfix/v3.5.5'
2 parents bfc310e + 6474aa8 commit 73ee53d

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v3.5.5 - Apr 13, 2016
2+
- WP-CLI support for wordpress v4.5, PR #701
3+
- PR #686
4+
- Fix #702
5+
- Minor Fixes
6+
17
v3.5.4 - Mar 15, 2016
28
- Fixed Vimbadmin installation issue
39
- PR #684

ee/cli/plugins/site.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,13 @@ def doupdatesite(self, pargs):
12131213
Log.info(self,"SSL not configured for site http://{0}".format(ee_domain))
12141214
return 0
12151215

1216+
if pargs.all and pargs.letsencrypt == "off":
1217+
if letsencrypt is check_ssl:
1218+
if letsencrypt is False:
1219+
Log.error(self, "SSl is not configured for given "
1220+
"site",False)
1221+
return 0
1222+
12161223
if pargs.letsencrypt:
12171224
if pargs.letsencrypt == 'on':
12181225
data['letsencrypt'] = True

ee/cli/plugins/site_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1417,7 +1417,7 @@ def renewLetsEncrypt(self, ee_domain_name):
14171417

14181418
Log.info(self, "Renewing SSl cert for https://{0}".format(ee_domain_name))
14191419

1420-
ssl = EEShellExec.cmd_exec(self, "./letsencrypt-auto --renew certonly --webroot -w /var/www/{0}/htdocs/ -d {0} -d www.{0} "
1420+
ssl = EEShellExec.cmd_exec(self, "./letsencrypt-auto --renew-by-default certonly --webroot -w /var/www/{0}/htdocs/ -d {0} -d www.{0} "
14211421
.format(ee_domain_name)
14221422
+ "--email {0} --text --agree-tos".format(ee_wp_email))
14231423
mail_list = ''
@@ -1508,7 +1508,7 @@ def archivedCertificateHandle(self,domain,ee_wp_email):
15081508

15091509
elif check_prompt == "3":
15101510
Log.info(self,"Please Wait while we renew SSL Certificate for your site.\nIt may take time depending upon network.")
1511-
ssl = EEShellExec.cmd_exec(self, "./letsencrypt-auto --renew certonly --webroot -w /var/www/{0}/htdocs/ -d {0} -d www.{0} "
1511+
ssl = EEShellExec.cmd_exec(self, "./letsencrypt-auto --renew-by-default certonly --webroot -w /var/www/{0}/htdocs/ -d {0} -d www.{0} "
15121512
.format(domain)
15131513
+ "--email {0} --text --agree-tos".format(ee_wp_email))
15141514
else:

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.5.4"
15+
ee_version = "3.5.5"
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.5.4"
51+
readonly ee_version_new="3.5.5"
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.5.4',
61+
version='3.5.5',
6262
description=long_description,
6363
long_description=long_description,
6464
classifiers=[],

0 commit comments

Comments
 (0)