From 3bceed427a63ab1789d7aa87e0d2360bc14da8c6 Mon Sep 17 00:00:00 2001 From: Will Glynn Date: Sat, 13 Feb 2016 18:42:47 -0600 Subject: [PATCH] Make the --dns help message more explicit about disabling challenges --- README.md | 2 +- cli.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 317179d6..9d1807aa 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ GLOBAL OPTIONS: --exclude, -x [--exclude option --exclude option] Explicitly disallow solvers by name from being used. Solvers: "http-01", "tls-sni-01". --http Set the port and interface to use for HTTP based challenges to listen on. Supported: interface:port or :port --tls Set the port and interface to use for TLS based challenges to listen on. Supported: interface:port or :port - --dns Solve a DNS challenge using the specified provider. + --dns Solve a DNS challenge using the specified provider. Disables all other solvers. Credentials for providers have to be passed through environment variables. For a more detailed explanation of the parameters, please see the online docs. Valid providers: diff --git a/cli.go b/cli.go index 15c4a2f0..ba216d07 100644 --- a/cli.go +++ b/cli.go @@ -112,7 +112,7 @@ func main() { }, cli.StringFlag{ Name: "dns", - Usage: "Solve a DNS challenge using the specified provider." + + Usage: "Solve a DNS challenge using the specified provider. Disables all other challenges." + "\n\tCredentials for providers have to be passed through environment variables." + "\n\tFor a more detailed explanation of the parameters, please see the online docs." + "\n\tValid providers:" +