An | Anton Röhm
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
dnsapi/dns_nanelo.sh
|
|
@ -25,7 +25,7 @@ dns_nanelo_add() { |
|
|
|
_saveaccountconf_mutable NANELO_TOKEN "$NANELO_TOKEN" |
|
|
|
|
|
|
|
_info "Adding TXT record to ${fulldomain}" |
|
|
|
response="$(_get "$NANELO_API$NANELO_TOKEN/dns/addrecord?type=TXT&name=${fulldomain}&value=${txtvalue}")" |
|
|
|
response="$(_get "$NANELO_API$NANELO_TOKEN/dns/addrecord?type=TXT&ttl=60&name=${fulldomain}&value=${txtvalue}")" |
|
|
|
if _contains "${response}" 'success'; then |
|
|
|
return 0 |
|
|
|
fi |
|
|
@ -49,7 +49,7 @@ dns_nanelo_rm() { |
|
|
|
_saveaccountconf_mutable NANELO_TOKEN "$NANELO_TOKEN" |
|
|
|
|
|
|
|
_info "Deleting resource record $fulldomain" |
|
|
|
response="$(_get "$NANELO_API$NANELO_TOKEN/dns/deleterecord?type=TXT&name=${fulldomain}&value=${txtvalue}")" |
|
|
|
response="$(_get "$NANELO_API$NANELO_TOKEN/dns/deleterecord?type=TXT&ttl=60&name=${fulldomain}&value=${txtvalue}")" |
|
|
|
if _contains "${response}" 'success'; then |
|
|
|
return 0 |
|
|
|
fi |
|
|
|