Commit 4a4dacb5 authored by neil's avatar neil
Browse files

minor, change default dns sleep time from 60 seconds to 120 seconds.

parent dcf9cb58
...@@ -22,6 +22,8 @@ VTYPE_TLS2="tls-sni-02" ...@@ -22,6 +22,8 @@ VTYPE_TLS2="tls-sni-02"
MAX_RENEW=80 MAX_RENEW=80
DEFAULT_DNS_SLEEP=120
W_TLS="tls" W_TLS="tls"
BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----" BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
...@@ -1592,7 +1594,7 @@ issue() { ...@@ -1592,7 +1594,7 @@ issue() {
if [ "$dnsadded" = '1' ] ; then if [ "$dnsadded" = '1' ] ; then
if [ -z "$Le_DNSSleep" ] ; then if [ -z "$Le_DNSSleep" ] ; then
Le_DNSSleep=60 Le_DNSSleep=$DEFAULT_DNS_SLEEP
else else
_savedomainconf "Le_DNSSleep" "$Le_DNSSleep" _savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
fi fi
...@@ -2479,7 +2481,7 @@ Parameters: ...@@ -2479,7 +2481,7 @@ Parameters:
--tls Use standalone tls mode. --tls Use standalone tls mode.
--apache Use apache mode. --apache Use apache mode.
--dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api. --dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api.
--dnssleep [60] The time in seconds to wait for all the txt records to take effect in dns api mode. Default 60 seconds. --dnssleep [$DEFAULT_DNS_SLEEP] The time in seconds to wait for all the txt records to take effect in dns api mode. Default $DEFAULT_DNS_SLEEP seconds.
--keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384. --keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384.
--accountkeylength, -ak [2048] Specifies the account key length. --accountkeylength, -ak [2048] Specifies the account key length.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment