@ -38,7 +38,7 @@ dns_constellix_add() {
if _constellix_rest POST " domains/ ${ _domain_id } /records " " [{\"type\":\"txt\",\"add\":true,\"set\":{\"name\":\" ${ _sub_domain } \",\"ttl\":60,\"roundRobin\":[{\"value\":\" ${ txtvalue } \"}]}}] " ; then
if _constellix_rest POST " domains/ ${ _domain_id } /records " " [{\"type\":\"txt\",\"add\":true,\"set\":{\"name\":\" ${ _sub_domain } \",\"ttl\":60,\"roundRobin\":[{\"value\":\" ${ txtvalue } \"}]}}] " ; then
if printf -- "%s" " $response " | grep "{\"success\":\"1 record(s) added, 0 record(s) updated, 0 record(s) deleted\"}" >/dev/null; then
if printf -- "%s" " $response " | grep "{\"success\":\"1 record(s) added, 0 record(s) updated, 0 record(s) deleted\"}" >/dev/null; then
_info "Added"
_info "Added"
return 0
return 0
else
else
_err "Error adding TXT record"
_err "Error adding TXT record"
fi
fi
@ -47,7 +47,7 @@ dns_constellix_add() {
_record_id = $( printf "%s\n" " $response " | _egrep_o "\"id\":[0-9]+" | cut -d ':' -f 2)
_record_id = $( printf "%s\n" " $response " | _egrep_o "\"id\":[0-9]+" | cut -d ':' -f 2)
if _constellix_rest GET " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " ; then
if _constellix_rest GET " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " ; then
_new_rr_values = $( printf "%s\n" " $response " | _egrep_o "\"roundRobin\":\[.*?\]" | sed " s/\] $/,{\"value\":\" ${ txtvalue } \"}]/ " )
_new_rr_values = $( printf "%s\n" " $response " | _egrep_o "\"roundRobin\":\[.*?\]" | sed " s/\] $/,{\"value\":\" ${ txtvalue } \"}]/ " )
_debug _new_rr_values $_new_rr_values
_debug _new_rr_values " $_new_rr_values "
_info "Updating TXT record"
_info "Updating TXT record"
if _constellix_rest PUT " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " " {\"name\":\" ${ _sub_domain } \",\"ttl\":60, ${ _new_rr_values } } " ; then
if _constellix_rest PUT " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " " {\"name\":\" ${ _sub_domain } \",\"ttl\":60, ${ _new_rr_values } } " ; then
if printf -- "%s" " $response " | grep "{\"success\":\"Record.*updated successfully\"}" >/dev/null; then
if printf -- "%s" " $response " | grep "{\"success\":\"Record.*updated successfully\"}" >/dev/null; then