Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
16db9a73
Commit
16db9a73
authored
Mar 29, 2019
by
Stephane Moser
Browse files
Add --dnsslowrate arg
parent
54f1be69
Changes
1
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
16db9a73
...
...
@@ -3974,9 +3974,16 @@ $_authorizations_map"
return 1
fi
if
!
$addcommand
"
$txtdomain
"
"
$txt
"
;
then
_err
"Error add txt for domain:
$txtdomain
"
return
1
if [ "$addcommand" = "dns_aws_add" -a -n "$_dnsslowrate" ] ; then
if ! $addcommand "$txtdomain" "$txt" "$_dnsslowrate"; then
_err "Error add txt for domain:$txtdomain"
return 1
fi
else
if ! $addcommand "$txtdomain" "$txt"; then
_err "Error add txt for domain:$txtdomain"
return 1
fi
fi
)
...
...
@@ -5919,6 +5926,7 @@ _process() {
_httpport=""
_tlsport=""
_dnssleep=""
_dnsslowrate=""
_listraw=""
_stopRenewOnError=""
#_insecure=""
...
...
@@ -6158,6 +6166,12 @@ _process() {
_webroot="$_webroot,$wvalue"
fi
;;
--dnsslowrate)
_dnsslowrate="$2"
shift
;;
--dnssleep)
_dnssleep="$2"
Le_DNSSleep="$_dnssleep"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment