Unverified Commit b2ff9240 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #2662 from tambetliiv/zone-root-check

zone.eu dns api: use different method to get root
parents 7a3c61b7 b59b0f03
...@@ -136,10 +136,10 @@ _get_root() { ...@@ -136,10 +136,10 @@ _get_root() {
if [ -z "$h" ]; then if [ -z "$h" ]; then
return 1 return 1
fi fi
if ! _zone_rest GET "dns/$h/a"; then if ! _zone_rest GET "dns/$h"; then
return 1 return 1
fi fi
if _contains "$response" "\"name\":\"$h\"" >/dev/null; then if _contains "$response" "\"identificator\":\"$h\"" >/dev/null; then
_domain=$h _domain=$h
return 0 return 0
fi fi
......
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