This commit is contained in:
peter 2022-02-08 13:32:15 +01:00
parent a5f943e227
commit af5c36e4ad

View File

@ -88,25 +88,19 @@ dns_curanet_rm() {
response="$(_post "" "$CURANET_REST_URL/${_domain}/Records/$recordid" "" "DELETE")"
return 0;
}
#################### Private functions below ##################################
gettoken() {
response="$(_post "grant_type=client_credentials&client_id=$CURANET_AUTHCLIENTID&client_secret=$CURANET_AUTHSECRET&scope=dns" "$CURANET_AUTH_URL" "" "")"
if ! _contains "$response" "access_token"; then
_err "Unable get access token"
return 1
fi
CURANET_ACCESS_TOKEN=$(echo "$response" | _egrep_o "\"access_token\":\"[^\"]+" | cut -c 17-)
}
#_acme-challenge.www.domain.com
#returns
# _domain=domain.com
@ -137,4 +131,3 @@ _get_root() {
done
return 1
}