mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 13:11:41 +00:00
use read/saveconf_mutable, not readconf from OVH
This commit is contained in:
parent
ec5fad433c
commit
02f6d4cb66
@ -92,14 +92,18 @@ dns_online_rm() {
|
|||||||
#################### Private functions below ##################################
|
#################### Private functions below ##################################
|
||||||
|
|
||||||
_online_check_config() {
|
_online_check_config() {
|
||||||
|
ONLINE_API_KEY="${CF_Key:-$(_readaccountconf_mutable ONLINE_API_KEY)}"
|
||||||
if [ -z "$ONLINE_API_KEY" ]; then
|
if [ -z "$ONLINE_API_KEY" ]; then
|
||||||
_err "No API key specified for Online API."
|
_err "No API key specified for Online API."
|
||||||
_err "Create your key and export it as ONLINE_API_KEY"
|
_err "Create your key and export it as ONLINE_API_KEY"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
if [ ! _online_rest GET "domain/" ]; then
|
||||||
|
_err "Invalid API key specified for Online API."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
_saveaccountconf ONLINE_API_KEY "$ONLINE_API_KEY"
|
_saveaccountconf_mutable ONLINE_API_KEY "$ONLINE_API_KEY"
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user