security/acme-client: use configured DNS sleep time for Namesilo, fixes #2121

This commit is contained in:
Frank Wall
2020-12-13 12:43:14 +01:00
parent 2af12712c6
commit a37538b636
3 changed files with 10 additions and 2 deletions
+5
View File
@@ -8,6 +8,11 @@ WWW: https://github.com/acmesh-official/acme.sh
Plugin Changelog
================
2.2
Changed:
* BREAKING: use configured DNS sleep time for Namesilo instead of hardcoded value (#2121)
2.1
Added:
@@ -752,6 +752,11 @@
<type>header</type>
<style>table_dns table_dns_namesilo</style>
</field>
<field>
<label>NOTE: A DNS sleep time of at least 1000 is recommended.</label>
<type>header</type>
<style>table_dns table_dns_namesilo</style>
</field>
<field>
<id>validation.dns_namesilo_key</id>
<label>Key</label>
@@ -40,7 +40,5 @@ class DnsNamesilo extends Base implements LeValidationInterface
public function prepare()
{
$this->acme_env['Namesilo_Key'] = (string)$this->config->dns_namesilo_key;
// Namesilo applies changes to DNS records only every 15 minutes.
$this->acme_args[] = '--dnssleep 960';
}
}