diff --git a/certbot/cli.py b/certbot/cli.py index 5afdc0bce..31b5bafb5 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -383,7 +383,7 @@ VERB_HELP = [ "opts": 'Options for for the "plugins" subcommand' }), ("update_symlinks", { - "short": "Recreate symlinks in your /live/ directory", + "short": "Recreate symlinks in your /etc/letsencrypt/live/ directory", "opts": ("Recreates cert and key symlinks in {0}, if you changed them by hand " "or edited a renewal configuration file".format( os.path.join(flag_default("config_dir"), "live"))) @@ -780,7 +780,7 @@ def _add_all_groups(helpful): helpful.add_group("paths", description="Arguments changing execution paths & servers") helpful.add_group("manage", description="Various subcommands and flags are available for managing your certificates:", - verbs=["certificates", "delete", "renew", "revoke"]) + verbs=["certificates", "delete", "renew", "revoke", "update_symlinks"]) # VERBS for verb, docs in VERB_HELP: