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.
This commit is contained in:
Alex Zorin 2021-01-26 17:24:56 +11:00
parent c5c53fff96
commit 9f5474526f

View file

@ -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 '')
)