Browse Source

Finish dns_cx_rm() method

pull/433/head
kookxiang 8 years ago
parent
commit
8379f015d7
No known key found for this signature in database GPG Key ID: 178460ED3B53DAFA
  1. 10
      dnsapi/dns_cx.sh

10
dnsapi/dns_cx.sh

@ -58,7 +58,15 @@ dns_cx_add() {
#fulldomain
dns_cx_rm() {
fulldomain=$1
REST_API="$CX_Api"
if _get_root "$fulldomain"; then
record_id=""
existing_records "$_domain" "$_sub_domain"
if ! [ "$record_id" = "" ]; then
_rest DELETE "record/$record_id/$_domain_id" "{}"
_info "Deleted record ${fulldomain}"
fi
fi
}
#usage: root sub

Loading…
Cancel
Save