diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c5ba34..533e712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Wildcard SSL Certificates support with DNS validation - Acme challenge validation with DNS API (Cloudflare, DigitalOcean, etc ..) on domain, subdomain, and wildcard - Flag `--letsencrypt=clean` to purge a previous SSL configuration +- Support for Debian 10 (buster) in beta #### Fixed diff --git a/docs/wo.8 b/docs/wo.8 index 6c168b2..97e48b8 100644 --- a/docs/wo.8 +++ b/docs/wo.8 @@ -11,9 +11,9 @@ wo stack [ status | start | stop | reload | restart ] [--all | --nginx | --php | .TP wo site [ list | info | show | enable | disable | edit | cd | show ] [ example.com ] .TP -wo site create example.com [ --html | --php | --php73 | --mysql] [[--wp | --wpsubdir | --wpsubdomain ] [--wpsc | --wpfc | --wpredis | --letsencrypt/--le/--letsencrypt=subdomain/wildcard]] +wo site create example.com [ --html | --php | --php73 | --mysql] [[--wp | --wpsubdir | --wpsubdomain ] [--wpsc | --wpfc | --wpredis | --letsencrypt/-le/--letsencrypt=subdomain/wildcard][--dns=dns_cf/dns_do]] .TP -wo site update example.com [ --php | --php73 |--mysql] [[--wp | --wpsubdir | --wpsubdomain ] [--wpsc | --wpfc | --wpredis ] [--password] [--le/--letsencrypt=on/off/subdomain/renew]] +wo site update example.com [ --php | --php73 |--mysql] [[--wp | --wpsubdir | --wpsubdomain ] [--wpsc | --wpfc | --wpredis ] [--password] [-le/--letsencrypt=on/off/subdomain/renew/wildcard] [--dns=dns_cf/dns_do]] .TP wo site delete example.com [--db | --files | --all | --no-prompt | --force/-f ] .TP diff --git a/install b/install index 9a06f37..3448d0b 100755 --- a/install +++ b/install @@ -401,10 +401,12 @@ wo_install_acme_sh() { # Clone Github repository if it doesn't exist wo_install() { { + rm -f /etc/bash_completion.d/wo_auto.rc rm -rf /tmp/WordOps git clone https://github.com/WordOps/WordOps.git /tmp/WordOps -b "$wo_branch" cd /tmp/WordOps || exit 1 + } >> "$wo_install_log" 2>&1 if [ -f $HOME/.gitconfig ]; then diff --git a/wo/core/variables.py b/wo/core/variables.py index 1963bca..e52136d 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -150,7 +150,8 @@ class WOVariables(): "php7.3-bcmath", "php7.3-mysql", "php7.3-opcache", "php7.3-zip", "php7.3-xml", "php7.3-soap"] wo_php_extra = ["php-memcached", "php-imagick", - "graphviz", "php-xdebug", "php-msgpack", "php-redis"] + "graphviz", "php-xdebug", "php-msgpack", + "php-redis", "php-mysql"] wo_php_key = 'AC0E47584A7A714D'