Update changelog, and site.py
This commit is contained in:
11
CHANGELOG.md
11
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.x - [Unreleased]
|
||||||
|
|
||||||
|
### v3.9.8.12 - 2019-09-19
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- WP-CLI updated to v2.3.0
|
- [APP] WP-CLI updated to v2.3.0
|
||||||
- Improved SSL certificates management from previous letsencrypt or certbot install
|
- [CORE] 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
|
- [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
|
#### Fixed
|
||||||
|
|
||||||
|
|||||||
1
install
1
install
@@ -144,6 +144,7 @@ echo ""
|
|||||||
###
|
###
|
||||||
# 1- Check whether lsb_release is installed, and if not, install it
|
# 1- Check whether lsb_release is installed, and if not, install it
|
||||||
###
|
###
|
||||||
|
wait
|
||||||
if ! command_exists lsb_release; then
|
if ! command_exists lsb_release; then
|
||||||
apt-get install lsb-release -qq
|
apt-get install lsb-release -qq
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash --init-file
|
|
||||||
source /etc/bash_completion.d/wo_auto.rc
|
|
||||||
source ~/.bashrc
|
|
||||||
@@ -95,7 +95,8 @@ class WOSiteController(CementBaseController):
|
|||||||
Log.debug(self, str(e))
|
Log.debug(self, str(e))
|
||||||
Log.error(self, 'could not input site name')
|
Log.error(self, 'could not input site name')
|
||||||
pargs.site_name = pargs.site_name.strip()
|
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
|
# check if site exists
|
||||||
if not check_domain_exists(self, wo_domain):
|
if not check_domain_exists(self, wo_domain):
|
||||||
Log.error(self, "site {0} does not exist".format(wo_domain))
|
Log.error(self, "site {0} does not exist".format(wo_domain))
|
||||||
|
|||||||
Reference in New Issue
Block a user