Compare commits

...

3 Commits

Author SHA1 Message Date
Alexander Puzynia 91b253de0e
Merge efa240b4e1 into f471b6b459 2024-04-26 07:07:51 +03:00
Alexander Puzynia efa240b4e1
feat(acme-common): update PKG_VERSION to 1.1.2
Signed-off-by: Alexander Puzynia <werwolf.by@gmail.com>
2024-04-19 12:40:43 -07:00
Alexander Puzynia c24387cb23
fix(acme.sh) fix some errors
Signed-off-by: Alexander Puzynia <werwolf.by@gmail.com>
2024-04-19 10:32:24 -07:00
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