diff --git a/CHANGELOG.md b/CHANGELOG.md index 52abb6a..087e42c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] -### v3.9.6.2 - 2019-07-23 +### v3.9.6.2 - 2019-07-24 + +#### Changed + +- Improve `wo update` process duration +- Improve package install/upgrade/remove process #### Fixed @@ -16,7 +21,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Arguments `--letsencrypt=clean/purge` - Incorrect directory removal during stack upgrade - ### v3.9.6.1 - 2019-07-23 #### Fixed diff --git a/wo/cli/plugins/site_functions.py b/wo/cli/plugins/site_functions.py index b0bf70f..597c197 100644 --- a/wo/cli/plugins/site_functions.py +++ b/wo/cli/plugins/site_functions.py @@ -1298,6 +1298,7 @@ def removeNginxConf(self, domain): def removeAcmeConf(self, domain): if os.path.isdir('/etc/letsencrypt/renewal/{0}_ecc' .format(domain)): + Log.info(self, "Removing Acme configuration") Log.debug(self, "Removing Acme configuration") try: WOShellExec.cmd_exec(self, "/etc/letsencrypt/acme.sh " @@ -1308,17 +1309,20 @@ def removeAcmeConf(self, domain): .format(domain)) except CommandExecutionError as e: Log.error(self, "Cert removal failed") + WOFileUtils.rm(self, '/etc/letsencrypt/renewal/{0}_ecc' .format(domain)) WOFileUtils.rm(self, '/etc/letsencrypt/live/{0}' .format(domain)) - WOFileUtils.rm(self, '/var/www/{0}/conf/nginx/ssl.conf'.format(domain)) + WOFileUtils.rm(self, '/var/www/{0}/conf/nginx/ssl.conf' + .format(domain)) WOFileUtils.rm(self, '/var/www/{0}/conf/nginx/ssl.conf.disabled' .format(domain)) - WOFileUtils.rm( - self, '/etc/nginx/conf.d/force-ssl-{0}.conf'.format(domain)) - WOFileUtils.rm( - self, '/etc/nginx/conf.d/force-ssl-{0}.conf.disabled'.format(domain)) + WOFileUtils.rm(self, '/etc/nginx/conf.d/force-ssl-{0}.conf' + .format(domain)) + WOFileUtils.rm(self, '/etc/nginx/conf.d/force-ssl-{0}.conf.disabled' + .format(domain)) + WOGit.add(self, ["/etc/letsencrypt"], msg="Deleted {0} " @@ -1435,7 +1439,7 @@ def setupLetsEncrypt(self, wo_domain_name, subdomain=False, wildcard=False, "ssl_stapling_verify on;\n" .format(WOVariables.wo_ssl_live, wo_domain_name)) sslconf.close() - updateSiteInfo(self, wo_domain_name, ssl=True) + #updateSiteInfo(self, wo_domain_name, ssl=True) WOGit.add(self, ["/etc/letsencrypt"], msg="Adding letsencrypt folder")