diff --git a/providers/dns/exec/exec.go b/providers/dns/exec/exec.go index 0370eef5..903bcca7 100644 --- a/providers/dns/exec/exec.go +++ b/providers/dns/exec/exec.go @@ -105,3 +105,9 @@ func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error { func (d *DNSProvider) Timeout() (timeout, interval time.Duration) { return d.config.PropagationTimeout, d.config.PollingInterval } + +// Sequential All DNS challenges for this provider will be resolved sequentially. +// Returns the interval between each iteration. +func (d *DNSProvider) Sequential() time.Duration { + return d.config.PropagationTimeout +}