diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md index 22c2ffdba..06a415777 100644 --- a/certbot/CHANGELOG.md +++ b/certbot/CHANGELOG.md @@ -23,6 +23,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/). next major release of Certbot. * The `source_address` argument for `acme.client.ClientNetwork` is deprecated and support for it will be removed in the next major release. +* Add UI text suggesting users create certs for multiple domains, when possible ### Fixed diff --git a/certbot/certbot/display/ops.py b/certbot/certbot/display/ops.py index f07093b55..d5b2c2420 100644 --- a/certbot/certbot/display/ops.py +++ b/certbot/certbot/display/ops.py @@ -181,7 +181,10 @@ def _filter_names(names: Iterable[str], if override_question: question = override_question else: - question = "Which names would you like to activate HTTPS for?" + question = ( + "Which names would you like to activate HTTPS for?\n" + "We recommend selecting either all domains, or all domains in a VirtualHost/server " + "block.") code, names = display_util.checklist( question, tags=sorted_names, cli_flag="--domains", force_interactive=True) return code, [str(s) for s in names]