nightly TLS certificate provisioning should omit warnings about domains it cant provision for
This commit is contained in:
parent
0b7f477b96
commit
cd717ec94e
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ export LC_TYPE=en_US.UTF-8
|
|||
management/backup.py | management/email_administrator.py "Backup Status"
|
||||
|
||||
# Provision any new certificates for new domains or domains with expiring certificates.
|
||||
management/ssl_certificates.py --headless | management/email_administrator.py "Error Provisioning TLS Certificate"
|
||||
management/ssl_certificates.py -q --headless | management/email_administrator.py "Error Provisioning TLS Certificate"
|
||||
|
||||
# Run status checks and email the administrator if anything changed.
|
||||
management/status_checks.py --show-changes | management/email_administrator.py "Status Checks Change Notice"
|
||||
|
|
|
@ -426,7 +426,7 @@ def provision_certificates_cmdline():
|
|||
if args and args[0] == "-v":
|
||||
verbose = True
|
||||
args.pop(0)
|
||||
if args and args[0] == "q":
|
||||
if args and args[0] == "-q":
|
||||
show_extended_problems = False
|
||||
args.pop(0)
|
||||
if args and args[0] == "--headless":
|
||||
|
|
Loading…
Reference in a new issue