From 9f5474526fa54c9ba5d4550dd3352f7f48c76b89 Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Tue, 26 Jan 2021 17:24:56 +1100 Subject: [PATCH] dns fallback hint: dont assume --dns-blah works --dns-blah won't work for third-party plugins, they need to be specified using --authenticator dns-blah. --- certbot/certbot/plugins/dns_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/plugins/dns_common.py b/certbot/certbot/plugins/dns_common.py index 03f43f1cc..25c2b55e0 100644 --- a/certbot/certbot/plugins/dns_common.py +++ b/certbot/certbot/plugins/dns_common.py @@ -41,7 +41,7 @@ class DNSAuthenticator(common.Plugin): delay = self.conf('propagation-seconds') return ( 'The Certificate Authority failed to verify the DNS TXT records created by the ' - '--{name} plugin. Ensure the above domains are hosted by this DNS provider, ' + '{name} plugin. Ensure the above domains are hosted by this DNS provider, ' 'or try increasing --{name}-propagation-seconds (currently {secs} second{suffix}).' .format(name=self.name, secs=delay, suffix='s' if delay != 1 else '') )