diff --git a/CHANGELOG.md b/CHANGELOG.md index 60fc841..5f0eb19 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/), #### Fixed - cache-enabler plugin not installed and configured with `wo site update site.tld --wpce` +- possible issue with domain variable in `--letsencrypt=wildcard` ### v3.9.8.5 - 2019-08-30 diff --git a/wo/cli/plugins/site_functions.py b/wo/cli/plugins/site_functions.py index 41c2c0b..99adab5 100644 --- a/wo/cli/plugins/site_functions.py +++ b/wo/cli/plugins/site_functions.py @@ -1475,7 +1475,7 @@ def checkWildcardExist(self, wo_domain_name): try: # export certificates list from acme.sh WOShellExec.cmd_exec(self, "{0} ".format(wo_acme_exec) + - "--list --list-raw > /var/lib/wo/cert.csv") + "--list --listraw > /var/lib/wo/cert.csv") except CommandExecutionError as e: Log.debug(self, "{0}".format(e)) Log.error(self, "Failed to export cert list")