acme: not creating state_dir in Makefile

Since state_dir can be customized, it should be create dynamically,
which it already does.

Signed-off-by: Glen Huang <i@glenhuang.com>
This commit is contained in:
Glen Huang 2022-10-22 21:38:44 +08:00
parent 647369bc45
commit 465f56adc2
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ define Package/acme-common/conffiles
endef
define Package/acme-common/install
$(INSTALL_DIR) $(1)/etc/acme
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/acme.config $(1)/etc/config/acme
$(INSTALL_DIR) $(1)/usr/bin

View File

@ -8,7 +8,7 @@
#
# Authors: Toke Høiland-Jørgensen <toke@toke.dk>
export state_dir='/etc/acme'
export state_dir=/etc/acme
export account_email=
export debug=0
export challenge_dir='/var/run/acme/challenge'