fix formatting
This commit is contained in:
parent
a196958bd6
commit
b45a44e405
@ -93,14 +93,12 @@ dns_1984hosting_rm() {
|
|||||||
fi
|
fi
|
||||||
_debug _sub_domain "$_sub_domain"
|
_debug _sub_domain "$_sub_domain"
|
||||||
_debug _domain "$_domain"
|
_debug _domain "$_domain"
|
||||||
|
|
||||||
_debug "Delete $fulldomain TXT record"
|
_debug "Delete $fulldomain TXT record"
|
||||||
|
|
||||||
url="https://management.1984hosting.com/domains"
|
|
||||||
|
|
||||||
if ! _get_zone_id "$_domain"; then
|
url="https://management.1984hosting.com/domains"
|
||||||
_err "invalid zone" "$_domain"
|
if ! _get_zone_id "$url" "$_domain"; then
|
||||||
return 1
|
_err "invalid zone" "$_domain"
|
||||||
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_htmlget "$url/$_zone_id" "$_sub_domain"
|
_htmlget "$url/$_zone_id" "$_sub_domain"
|
||||||
@ -218,11 +216,11 @@ _get_root() {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
#usage: _get_zone_id domain.com
|
#usage: _get_zone_id url domain.com
|
||||||
#returns zone id for domain.com
|
#returns zone id for domain.com
|
||||||
_get_zone_id() {
|
_get_zone_id() {
|
||||||
url="https://management.1984hosting.com/domains"
|
url=$1
|
||||||
domain=$1
|
domain=$2
|
||||||
_htmlget "$url" "$domain"
|
_htmlget "$url" "$domain"
|
||||||
_debug2 _response "$_response"
|
_debug2 _response "$_response"
|
||||||
_zone_id="$(echo "$_response" | _egrep_o 'zone\/[0-9]+')"
|
_zone_id="$(echo "$_response" | _egrep_o 'zone\/[0-9]+')"
|
||||||
|
Loading…
Reference in New Issue
Block a user