mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
nightly TLS certificate provisioning should omit warnings about domains it cant provision for
This commit is contained in:
parent
0b7f477b96
commit
cd717ec94e
@ -13,7 +13,7 @@ export LC_TYPE=en_US.UTF-8
|
|||||||
management/backup.py | management/email_administrator.py "Backup Status"
|
management/backup.py | management/email_administrator.py "Backup Status"
|
||||||
|
|
||||||
# Provision any new certificates for new domains or domains with expiring certificates.
|
# 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.
|
# Run status checks and email the administrator if anything changed.
|
||||||
management/status_checks.py --show-changes | management/email_administrator.py "Status Checks Change Notice"
|
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":
|
if args and args[0] == "-v":
|
||||||
verbose = True
|
verbose = True
|
||||||
args.pop(0)
|
args.pop(0)
|
||||||
if args and args[0] == "q":
|
if args and args[0] == "-q":
|
||||||
show_extended_problems = False
|
show_extended_problems = False
|
||||||
args.pop(0)
|
args.pop(0)
|
||||||
if args and args[0] == "--headless":
|
if args and args[0] == "--headless":
|
||||||
|
Loading…
Reference in New Issue
Block a user