From a4f316867b6901e56c6e860896ad686be7ce35dd Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 19 Sep 2019 15:59:25 +0200 Subject: [PATCH] Update changelog, and site.py --- CHANGELOG.md | 11 ++++++++--- install | 1 + tests/init-file | 3 --- wo/cli/plugins/site.py | 3 ++- 4 files changed, 11 insertions(+), 7 deletions(-) delete mode 100644 tests/init-file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f7d6a6..d6f180f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] +### v3.9.8.12 - 2019-09-19 + #### Changed -- WP-CLI updated to v2.3.0 -- Improved SSL certificates management from previous letsencrypt or certbot install -- Use a separate python file for gitconfig during installation to redirect setup.py output into logs +- [APP] WP-CLI updated to v2.3.0 +- [CORE] Improved SSL certificates management from previous letsencrypt or certbot install +- [CORE] Use a separate python file for gitconfig during installation to redirect setup.py output into logs +- [CORE] updated cement to v2.8.2 +- [CORE] removed old `--experimental flag` +- [CORE] Improve and simplify install script #### Fixed diff --git a/install b/install index 5c7dd46..b909571 100755 --- a/install +++ b/install @@ -144,6 +144,7 @@ echo "" ### # 1- Check whether lsb_release is installed, and if not, install it ### +wait if ! command_exists lsb_release; then apt-get install lsb-release -qq fi diff --git a/tests/init-file b/tests/init-file deleted file mode 100644 index d8a3a07..0000000 --- a/tests/init-file +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash --init-file -source /etc/bash_completion.d/wo_auto.rc -source ~/.bashrc diff --git a/wo/cli/plugins/site.py b/wo/cli/plugins/site.py index f4175b7..668941c 100644 --- a/wo/cli/plugins/site.py +++ b/wo/cli/plugins/site.py @@ -95,7 +95,8 @@ class WOSiteController(CementBaseController): Log.debug(self, str(e)) Log.error(self, 'could not input site name') pargs.site_name = pargs.site_name.strip() - (wo_domain, wo_www_domain) = WODomain.validatedomain(self, pargs.site_name) + (wo_domain, wo_www_domain) = WODomain.validatedomain(self, + pargs.site_name) # check if site exists if not check_domain_exists(self, wo_domain): Log.error(self, "site {0} does not exist".format(wo_domain))