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:
parent
647369bc45
commit
465f56adc2
2 changed files with 1 additions and 2 deletions
|
@ -34,7 +34,6 @@ define Package/acme-common/conffiles
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/acme-common/install
|
define Package/acme-common/install
|
||||||
$(INSTALL_DIR) $(1)/etc/acme
|
|
||||||
$(INSTALL_DIR) $(1)/etc/config
|
$(INSTALL_DIR) $(1)/etc/config
|
||||||
$(INSTALL_CONF) ./files/acme.config $(1)/etc/config/acme
|
$(INSTALL_CONF) ./files/acme.config $(1)/etc/config/acme
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#
|
#
|
||||||
# Authors: Toke Høiland-Jørgensen <toke@toke.dk>
|
# Authors: Toke Høiland-Jørgensen <toke@toke.dk>
|
||||||
|
|
||||||
export state_dir='/etc/acme'
|
export state_dir=/etc/acme
|
||||||
export account_email=
|
export account_email=
|
||||||
export debug=0
|
export debug=0
|
||||||
export challenge_dir='/var/run/acme/challenge'
|
export challenge_dir='/var/run/acme/challenge'
|
||||||
|
|
Loading…
Reference in a new issue