mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
support to delete multiple entries
This commit is contained in:
parent
68f66ca101
commit
1ef7fd3659
@ -75,16 +75,22 @@ dns_kas_rm() {
|
||||
params="$params&kas_auth_type=$KAS_Authtype"
|
||||
params="$params&kas_auth_data=$KAS_Authdata"
|
||||
params="$params&kas_action=delete_dns_settings"
|
||||
params="$params&var1=record_id"
|
||||
params="$params&wert1=$_record_id"
|
||||
|
||||
# split it into a seperated list, if there where multiples entries made
|
||||
records=($_record_id)
|
||||
for i in "${records[@]}"
|
||||
do
|
||||
params2="$params&var1=record_id"
|
||||
params2="$params2&wert1=$i"
|
||||
_debug2 "Wait for 10 seconds by default before calling KAS API."
|
||||
sleep 10
|
||||
response="$(_get "$KAS_Api$params")"
|
||||
response="$(_get "$KAS_Api$params2")"
|
||||
_debug2 "response" "$response"
|
||||
if ! _contains "$response" "TRUE"; then
|
||||
_err "Either the txt record is not found or another error occurred, please check manually."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
else # Cannot delete or unkown error
|
||||
_err "No record_id found that can be deleted. Please check manually."
|
||||
return 1
|
||||
|
Loading…
Reference in New Issue
Block a user