From fb0bcaac64a782b89e3d23af4b0ce303defd15af Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Sun, 7 Mar 2021 15:24:23 -0500 Subject: [PATCH] Clarify that create-domains does not purchase them (#1086) * Make GCLOUD and GANDI_V5 modules consistant Fixes https://github.com/StackExchange/dnscontrol/issues/1060 Fixes https://github.com/StackExchange/dnscontrol/issues/1059 * Fix help text --- commands/createDomains.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/createDomains.go b/commands/createDomains.go index df5dee462..7bc14504f 100644 --- a/commands/createDomains.go +++ b/commands/createDomains.go @@ -11,7 +11,7 @@ var _ = cmd(catUtils, func() *cli.Command { var args CreateDomainsArgs return &cli.Command{ Name: "create-domains", - Usage: "ensures that all domains in your configuration are present in all providers.", + Usage: "Ensures that all domains in your configuration are activated at their Domain Service Provider (This does not purchase the domain or otherwise interact with Registrars.)", Action: func(ctx *cli.Context) error { return exit(CreateDomains(args)) },