1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-18 13:23:57 +02:00

acme: remove redundant postinst

opkg runs uci-defaults if a package installs one, in acme-common's case
that's identical to postinst.

prerm shouldn't be run a image builder, so it's unnecessary to check
IPKG_INSTROOT

Signed-off-by: Glen Huang <me@glenhuang.com>
This commit is contained in:
Glen Huang 2023-04-26 19:46:46 +08:00 committed by Toke Høiland-Jørgensen
parent 1bfd2f7ade
commit 8589f298a1

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=acme-common
PKG_VERSION:=1.0.2
PKG_VERSION:=1.0.3
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
PKG_LICENSE:=GPL-3.0-only
@ -48,19 +48,9 @@ define Package/acme-common/install
$(INSTALL_DIR) $(1)/etc/hotplug.d/acme
endef
define Package/acme-common/postinst
#!/bin/sh
if [ -z "$$IPKG_INSTROOT" ]; then
grep -q '/etc/init.d/acme' /etc/crontabs/root 2>/dev/null && exit 0
echo "0 0 * * * /etc/init.d/acme start" >> /etc/crontabs/root
fi
endef
define Package/acme-common/prerm
#!/bin/sh
if [ -z "$$IPKG_INSTROOT" ]; then
sed -i '\|/etc/init.d/acme|d' /etc/crontabs/root
fi
sed -i '\|/etc/init.d/acme|d' /etc/crontabs/root
endef
define Build/Configure