link to user guide#automated-renewals

when not running with --preconfigured-renewal
This commit is contained in:
Alex Zorin 2021-03-22 19:53:54 +11:00
parent 714c4d9208
commit 5a15b3c79c
2 changed files with 12 additions and 6 deletions

View file

@ -493,15 +493,17 @@ def _report_new_cert(config, cert_path, fullchain_path, key_path=None):
("\nSuccessfully received certificate.\n"
"Certificate is saved at: {cert_path}\n{key_msg}"
"This certificate expires on {expiry}.\n"
"{renew_msg}\n").format(
"These files will be updated when the certificate renews.\n{renew_msg}\n").format(
cert_path=fullchain_path,
expiry=crypto_util.notAfter(cert_path).date(),
key_msg="Key is saved at: {}\n".format(key_path) if key_path else "",
renew_msg="Certbot will automatically renew this certificate in the background."
if config.preconfigured_renewal else
("These files will be updated when the certificate renews. "
f'Run "{cli.cli_constants.cli_command} renew" to renew '
"all expiring certificates.")
(f'Run "{cli.cli_constants.cli_command} renew" to renew '
"expiring certificates. "
"We recommend setting up a scheduled task for renewal, see "
"https://certbot.eff.org/docs/using.html#automated-renewals "
"for instructions.")
)
)

View file

@ -1806,6 +1806,7 @@ class ReportNewCertTest(unittest.TestCase):
'Certificate is saved at: /path/to/fullchain.pem\n'
'Key is saved at: /path/to/privkey.pem\n'
'This certificate expires on 1970-01-01.\n'
'These files will be updated when the certificate renews.\n'
'Certbot will automatically renew this certificate in the background.\n'
)
@ -1818,6 +1819,7 @@ class ReportNewCertTest(unittest.TestCase):
'\nSuccessfully received certificate.\n'
'Certificate is saved at: /path/to/fullchain.pem\n'
'This certificate expires on 1970-01-01.\n'
'These files will be updated when the certificate renews.\n'
'Certbot will automatically renew this certificate in the background.\n'
)
@ -1831,8 +1833,10 @@ class ReportNewCertTest(unittest.TestCase):
'Certificate is saved at: /path/to/fullchain.pem\n'
'Key is saved at: /path/to/privkey.pem\n'
'This certificate expires on 1970-01-01.\n'
'These files will be updated when the certificate renews. '
'Run "certbot renew" to renew all expiring certificates.\n'
'These files will be updated when the certificate renews.\n'
'Run "certbot renew" to renew expiring certificates. We recommend setting up a '
'scheduled task for renewal, see https://certbot.eff.org/docs/using.html#automated'
'-renewals for instructions.\n'
)