Commit 5127a9ae authored by Van Hau TRAN's avatar Van Hau TRAN
Browse files

fix: shell if

parent b5653a1c
......@@ -114,7 +114,7 @@ _scaleway_create_TXT_record() {
_scaleway_rest PATCH "dns-zones/$txt_zone/records" "{\"return_all_records\":false,\"changes\":[{\"add\":{\"records\":[{\"name\":\"$txt_name\",\"data\":\"$txt_value\",\"type\":\"TXT\",\"ttl\":60}]}}]}"
if [ _contains "$response" "records"; then
if _contains "$response" "records"; then
return 0
else
_err "error1 $response"
......@@ -130,7 +130,7 @@ _scaleway_delete_TXT_record() {
_scaleway_rest PATCH "dns-zones/$txt_zone/records" "{\"return_all_records\":false,\"changes\":[{\"delete\":{\"id_fields\":{\"name\":\"$txt_name\",\"data\":\"$txt_value\",\"type\":\"TXT\"}}}]}"
if [ _contains "$response" "records"; then
if _contains "$response" "records"; then
return 0
else
_err "error2 $response"
......
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