|
@ -57,6 +57,8 @@ dns_netlify_add() { |
|
|
#Remove the txt record after validation. |
|
|
#Remove the txt record after validation. |
|
|
dns_netlify_rm() { |
|
|
dns_netlify_rm() { |
|
|
_info "Using Netlify" |
|
|
_info "Using Netlify" |
|
|
|
|
|
txtdomain="$1" |
|
|
|
|
|
txt="$2" |
|
|
_debug txtdomain "$txtdomain" |
|
|
_debug txtdomain "$txtdomain" |
|
|
_debug txt "$txt" |
|
|
_debug txt "$txt" |
|
|
|
|
|
|
|
@ -75,7 +77,7 @@ dns_netlify_rm() { |
|
|
|
|
|
|
|
|
_netlify_rest GET "$dnsRecordURI" "" "$NETLIFY_ACCESS_TOKEN" |
|
|
_netlify_rest GET "$dnsRecordURI" "" "$NETLIFY_ACCESS_TOKEN" |
|
|
|
|
|
|
|
|
_record_id=$(echo "$response" | _egrep_o "\"type\":\"TXT\",[^\}]*\"value\":\"$txt\"" | head -n 1 | _egrep_o "\"id\":\"[^\"\}]*\"" | cut -d : -f 2 | tr -d \" ) |
|
|
|
|
|
|
|
|
_record_id=$(echo "$response" | _egrep_o "\"type\":\"TXT\",[^\}]*\"value\":\"$txt\"" | head -n 1 | _egrep_o "\"id\":\"[^\"\}]*\"" | cut -d : -f 2 | tr -d \") |
|
|
_debug _record_id "$_record_id" |
|
|
_debug _record_id "$_record_id" |
|
|
if [ "$_record_id" ]; then |
|
|
if [ "$_record_id" ]; then |
|
|
_netlify_rest DELETE "$dnsRecordURI/$_record_id" "" "$NETLIFY_ACCESS_TOKEN" |
|
|
_netlify_rest DELETE "$dnsRecordURI/$_record_id" "" "$NETLIFY_ACCESS_TOKEN" |
|
@ -112,7 +114,7 @@ _get_root() { |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
if _contains "$response" "\"name\":\"$h\"" >/dev/null; then |
|
|
if _contains "$response" "\"name\":\"$h\"" >/dev/null; then |
|
|
_domain_id=$(echo "$response" | _egrep_o "\"[^\"]*\",\"name\":\"$h" | cut -d , -f 1 | tr -d \" ) |
|
|
|
|
|
|
|
|
_domain_id=$(echo "$response" | _egrep_o "\"[^\"]*\",\"name\":\"$h" | cut -d , -f 1 | tr -d \") |
|
|
if [ "$_domain_id" ]; then |
|
|
if [ "$_domain_id" ]; then |
|
|
if [ "$i" = 1 ]; then |
|
|
if [ "$i" = 1 ]; then |
|
|
#create the record at the domain apex (@) if only the domain name was provided as --domain-alias |
|
|
#create the record at the domain apex (@) if only the domain name was provided as --domain-alias |
|
|