Commit 9b532584 authored by Van Hau TRAN's avatar Van Hau TRAN
Browse files

fix: fix delete txt record and error mngtt

parent 5127a9ae
......@@ -29,6 +29,12 @@ dns_scaleway_add() {
_info "Adding record"
_scaleway_create_TXT_record "$_domain" "$_sub_domain" "$txtvalue"
if _contains "$response" "records"; then
return 0
else
_err error "$response"
return 1
fi
_info "Record added."
return 0
......@@ -52,7 +58,13 @@ dns_scaleway_rm() {
_debug _domain "$_domain"
_info "Deleting record"
_scaleway_create_TXT_record "$_domain" "$_sub_domain" "$txtvalue"
_scaleway_delete_TXT_record "$_domain" "$_sub_domain" "$txtvalue"
if _contains "$response" "records"; then
return 0
else
_err error "$response"
return 1
fi
_info "Record deleted."
return 0
......@@ -83,7 +95,7 @@ _scaleway_check_config() {
# _domain=domain.com
_get_root() {
domain=$1
i=2
i=1
p=1
while true; do
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment