mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-04-29 22:52:43 +00:00
Merge 2c0820b0ff11b6f9db5d5c94a25844f92f5971ac into 4e0686f73cf89d29d19cd24d46386b770d194bbb
This commit is contained in:
commit
fd805d3cf1
@ -232,7 +232,7 @@ _cyon_add_txt() {
|
|||||||
_info " - Adding DNS TXT entry..."
|
_info " - Adding DNS TXT entry..."
|
||||||
|
|
||||||
add_txt_url="https://my.cyon.ch/domain/dnseditor/add-record-async"
|
add_txt_url="https://my.cyon.ch/domain/dnseditor/add-record-async"
|
||||||
add_txt_data="zone=${fulldomain_idn}.&ttl=900&type=TXT&value=${txtvalue}"
|
add_txt_data="name=${fulldomain_idn}.&ttl=900&type=TXT&dnscontent=${txtvalue}"
|
||||||
|
|
||||||
add_txt_response="$(_post "$add_txt_data" "$add_txt_url")"
|
add_txt_response="$(_post "$add_txt_data" "$add_txt_url")"
|
||||||
_debug add_txt_response "${add_txt_response}"
|
_debug add_txt_response "${add_txt_response}"
|
||||||
@ -241,9 +241,10 @@ _cyon_add_txt() {
|
|||||||
|
|
||||||
add_txt_message="$(printf "%s" "${add_txt_response}" | _cyon_get_response_message)"
|
add_txt_message="$(printf "%s" "${add_txt_response}" | _cyon_get_response_message)"
|
||||||
add_txt_status="$(printf "%s" "${add_txt_response}" | _cyon_get_response_status)"
|
add_txt_status="$(printf "%s" "${add_txt_response}" | _cyon_get_response_status)"
|
||||||
|
add_txt_validation="$(printf "%s" "${add_txt_response}" | _cyon_get_validation_status)"
|
||||||
|
|
||||||
# Bail if adding TXT entry fails.
|
# Bail if adding TXT entry fails.
|
||||||
if [ "${add_txt_status}" != "true" ]; then
|
if [ "${add_txt_status}" != "true" ] || [ "${add_txt_validation}" != "true" ] ; then
|
||||||
_err " ${add_txt_message}"
|
_err " ${add_txt_message}"
|
||||||
_err ""
|
_err ""
|
||||||
return 1
|
return 1
|
||||||
@ -308,6 +309,10 @@ _cyon_get_response_status() {
|
|||||||
_egrep_o '"status":\w*' | cut -d : -f 2
|
_egrep_o '"status":\w*' | cut -d : -f 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_cyon_get_validation_status() {
|
||||||
|
_egrep_o '"valid":\w*' | cut -d : -f 2
|
||||||
|
}
|
||||||
|
|
||||||
_cyon_get_response_success() {
|
_cyon_get_response_success() {
|
||||||
_egrep_o '"onSuccess":"[^"]*"' | cut -d : -f 2 | tr -d '"'
|
_egrep_o '"onSuccess":"[^"]*"' | cut -d : -f 2 | tr -d '"'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user