File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1+ v3.5.6 - May 5, 2016
2+ - Patch for ImageMagick vulnerability CVE-2016–3714 - https://imagetragick.com/
3+ - Minor Fix for letsencrypt
4+
15v3.5.5 - Apr 13, 2016
26- WP-CLI support for wordpress v4.5, PR #701
37- PR #686
Original file line number Diff line number Diff line change @@ -1219,6 +1219,7 @@ def doupdatesite(self, pargs):
12191219 Log .error (self , "SSl is not configured for given "
12201220 "site" ,False )
12211221 return 0
1222+ pass
12221223
12231224 if pargs .letsencrypt :
12241225 if pargs .letsencrypt == 'on' :
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class EEVariables():
1212 """Intialization of core variables"""
1313
1414 # EasyEngine version
15- ee_version = "3.5.5 "
15+ ee_version = "3.5.6 "
1616
1717
1818 # EasyEngine packages versions
Original file line number Diff line number Diff line change 4848# Define variables for later use
4949ee_branch=$1
5050readonly ee_version_old=" 2.2.3"
51- readonly ee_version_new=" 3.5.5 "
51+ readonly ee_version_new=" 3.5.6 "
5252readonly ee_log_dir=/var/log/ee/
5353readonly ee_install_log=/var/log/ee/install.log
5454readonly ee_linux_distro=$( lsb_release -i | awk ' {print $3}' )
8787# Generate Locale
8888function ee_install_dep()
8989{
90- ee_lib_echo " Installing required packages, please wait..."
9190 if [ " $ee_linux_distro " == " Ubuntu" ]; then
9291 apt-get -y install gcc curl gzip python3 python3-apt python3-setuptools python3-dev sqlite3 git tar python-software-properties software-properties-common || ee_lib_error " Unable to install pre depedencies, exit status " 1
9392 elif [ " $ee_linux_distro " == " Debian" ]; then
@@ -365,6 +364,15 @@ function ee_upgrade_php(){
365364
366365function ee_update_latest()
367366{
367+ if [ -f /etc/ImageMagick/policy.xml ]
368+ then
369+ if [ ! -f /etc/ImageMagick/patch.txt ]
370+ then
371+ echo -e " \t<policy domain=" coder" rights=" none" pattern=" EPHEMERAL" />\n\t<policy domain=" coder" rights=" none" pattern=" URL" />\n\t<policy domain=" coder" rights=" none" pattern=" HTTPS" />\n\t<policy domain=" coder" rights=" none" pattern=" MVG" />\n\t<policy domain=" coder" rights=" none" pattern=" MSL" />" >> /etc/ImageMagick/patch.txt
372+ sed -i ' /<policymap>/r /etc/ImageMagick/patch.txt' /etc/ImageMagick/policy.xml
373+ fi
374+ fi
375+
368376 # Move ~/.my.cnf to /etc/mysql/conf.d/my.cnf
369377 if [ ! -f /etc/mysql/conf.d/my.cnf ]
370378 then
Original file line number Diff line number Diff line change 5858 shutil .copy2 (os .path .expanduser ("~" )+ '/.gitconfig' , '/root/.gitconfig' )
5959
6060setup (name = 'ee' ,
61- version = '3.5.5 ' ,
61+ version = '3.5.6 ' ,
6262 description = long_description ,
6363 long_description = long_description ,
6464 classifiers = [],
You can’t perform that action at this time.
0 commit comments