From efe51e02becf50a686eb8d3ed9c9bc128850909a Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Tue, 20 Oct 2015 10:34:31 -0700 Subject: [PATCH] Explain the --standalone change in defaults --- letsencrypt/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index eba5e8685..b79ec7ae4 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -751,7 +751,8 @@ def create_parser(plugins, args): helpful.add(None, "--nginx", action="store_true", help="Obtain and install certs using Nginx") helpful.add(None, "--standalone", action="store_true", - help='Obtain certs using a "standalone" webserver on port 443.') + help=('Obtain certs using a "standalone" webserver. ' + 'Changes the default "run" command to "auth".') # positional arg shadows --domains, instead of appending, and # --domains is useful, because it can be stored in config #for subparser in parser_run, parser_auth, parser_install: