Browse Source

dns_ovh: fix random add/remove txt records failures

due to inconsistent curl api response json
pull/3617/head
Ivanovitch_k 3 years ago
parent
commit
63165764dc
  1. 4
      dnsapi/dns_ovh.sh

4
dnsapi/dns_ovh.sh

@ -261,7 +261,9 @@ _get_root() {
return 1
fi
if ! _contains "$response" "This service does not exist" >/dev/null && ! _contains "$response" "NOT_GRANTED_CALL" >/dev/null; then
if ! _contains "$response" "This service does not exist" >/dev/null && \
! _contains "$response" "This call has not been granted" >/dev/null && \
! _contains "$response" "NOT_GRANTED_CALL" >/dev/null; then
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
_domain="$h"
return 0

Loading…
Cancel
Save