Browse Source

Add sequential flag. Fixes #1233

pull/3061/head
sagudev 5 years ago
parent
commit
e9013d3d06
  1. 1091
      acme.sh
  2. 2
      dnsapi/dns_ddnss.sh
  3. 2
      dnsapi/dns_duckdns.sh

1091
acme.sh
File diff suppressed because it is too large
View File

2
dnsapi/dns_ddnss.sh

@ -45,7 +45,7 @@ dns_ddnss_add() {
if _ddnss_rest GET "key=$DDNSS_Token&host=$_ddnss_domain&txtm=1&txt=$txtvalue"; then if _ddnss_rest GET "key=$DDNSS_Token&host=$_ddnss_domain&txtm=1&txt=$txtvalue"; then
if [ "$response" = "Updated 1 hostname." ]; then if [ "$response" = "Updated 1 hostname." ]; then
_info "TXT record has been successfully added to your DDNSS domain." _info "TXT record has been successfully added to your DDNSS domain."
_info "Note that all subdomains under this domain uses the same TXT record."
_info "Note that all subdomains under this domain uses the same TXT record, so use -s swich if you have multiple subdomains."
return 0 return 0
else else
_err "Errors happened during adding the TXT record, response=$response" _err "Errors happened during adding the TXT record, response=$response"

2
dnsapi/dns_duckdns.sh

@ -43,7 +43,7 @@ dns_duckdns_add() {
if _duckdns_rest GET "domains=$_duckdns_domain&token=$DuckDNS_Token&txt=$txtvalue"; then if _duckdns_rest GET "domains=$_duckdns_domain&token=$DuckDNS_Token&txt=$txtvalue"; then
if [ "$response" = "OK" ]; then if [ "$response" = "OK" ]; then
_info "TXT record has been successfully added to your DuckDNS domain." _info "TXT record has been successfully added to your DuckDNS domain."
_info "Note that all subdomains under this domain uses the same TXT record."
_info "Note that all subdomains under this domain uses the same TXT record, so use -s swich if you have multiple subdomains."
return 0 return 0
else else
_err "Errors happened during adding the TXT record, response=$response" _err "Errors happened during adding the TXT record, response=$response"

Loading…
Cancel
Save