mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
removed useless code
This commit is contained in:
parent
29992f54a3
commit
a1e1bfc71b
@ -91,11 +91,6 @@ dns_me_rm() {
|
||||
_debug "Getting txt records"
|
||||
_me_rest GET "${_domain_id}/records?recordName=$_sub_domain&type=TXT"
|
||||
|
||||
if ! printf "%s" "$response" | grep \"success\":true >/dev/null; then
|
||||
_err "Error"
|
||||
return 1
|
||||
fi
|
||||
|
||||
count=$(printf "%s\n" "$response" | _egrep_o "\"totalRecords\":[^,]*" | cut -d : -f 2)
|
||||
_debug count "$count"
|
||||
if [ "$count" = "0" ]; then
|
||||
@ -107,10 +102,7 @@ dns_me_rm() {
|
||||
_err "Can not get record id to remove."
|
||||
return 1
|
||||
fi
|
||||
if ! _me_rest DELETE "$_domain_id/records/$record_id"; then
|
||||
_err "Delete record error."
|
||||
return 1
|
||||
fi
|
||||
_me_rest DELETE "$_domain_id/records/$record_id"
|
||||
_contains "$response" '"success":true'
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user