This commit is contained in:
Alexander Puzynia 2024-04-26 15:00:53 +03:00 committed by GitHub
commit 9e1e3362a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=acme-common
PKG_VERSION:=1.1.1
PKG_VERSION:=1.1.2
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
PKG_LICENSE:=GPL-3.0-only

View File

@ -57,6 +57,7 @@ load_options() {
config_get days "$section" days
export days
config_get standalone "$section" standalone
export standalone
[ -n "$standalone" ] && log warn "Option \"standalone\" is deprecated."
config_get dns_wait "$section" dns_wait
export dns_wait
@ -126,7 +127,7 @@ load_globals() {
log warn "Option \"state_dir\" is deprecated, please remove it. Certificates now exist in $CERT_DIR."
mkdir -p "$state_dir"
else
state_dir=/etc/acme
state_dir=$CERT_DIR
fi
export state_dir