mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
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:
parent
c5c53fff96
commit
9f5474526f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 '')
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue