hetzner_dns not work in ver 7.1
where is code in file: /usr/share/proxmox-acme/proxmox-acme ?
two function not found and api plugin not work:
lost functions i get from original file acme.sh
where is code in file: /usr/share/proxmox-acme/proxmox-acme ?
two function not found and api plugin not work:
Bash:
dns_hetzner.sh: line 154: _readdomainconf: command not found
lost functions i get from original file acme.sh
Bash:
#_readdomainconf
_readdomainconf() {
_read_conf "$DOMAIN_CONF" "$1"
}
_read_conf() {
_r_c_f="$1"
_sdkey="$2"
if [ -f "$_r_c_f" ]; then
_sdv="$(
eval "$(grep "^$_sdkey *=" "$_r_c_f")"
eval "printf \"%s\" \"\$$_sdkey\""
)"
if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then
_sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)"
fi
printf "%s" "$_sdv"
else
_debug "config file is empty, can not read $_sdkey"
fi
}