Browse Source

acme: remove cron entry on package removal

Previously, the cron config was not removed on uninstall. This change fixes
that.

Signed-off-by: Wren Turkal <wt@penguintechs.org>
lilik-openwrt-22.03
Wren Turkal 5 years ago
parent
commit
54a6593b6f
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      net/acme/Makefile

+ 6
- 1
net/acme/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=acme
PKG_VERSION:=2.8.6
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/acmesh-official/acme.sh/archive/$(PKG_VERSION).tar.gz
@ -57,6 +57,11 @@ define Package/acme/install
$(INSTALL_BIN) $(PKG_BUILD_DIR)/acme.sh $(1)/usr/lib/acme/acme.sh
endef
define Package/acme/prerm
#!/bin/sh
sed -i '/\/etc\/init\.d\/acme start/d' /etc/crontabs/root
endef
define Package/acme-dnsapi
SECTION:=net
CATEGORY:=Network


Loading…
Cancel
Save