Catch the situation when the TXT record is updated with the same value

This commit is contained in:
wout 2021-03-24 09:01:54 +01:00
parent 8adb8a6986
commit 6b7db22981
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ dns_constellix_add() {
if printf -- "%s" "$response" | grep "{\"success\":\"Record.*updated successfully\"}" >/dev/null; then
_info "Updated"
return 0
elif printf -- "%s" "$response" | grep "{\"errors\":\[\"Contents are identical\"\]}" >/dev/null; then
_info "Already exists, no need to update"
return 0
else
_err "Error updating TXT record"
fi