From: Glen Huang Date: Wed, 26 Apr 2023 11:46:46 +0000 (+0800) Subject: acme: remove redundant postinst X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8589f298a130cb28cf0c769b50c1a4c116a3d70b;p=feed%2Fpackages.git 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 --- diff --git a/net/acme-common/Makefile b/net/acme-common/Makefile index 841146826d..ac92fc5642 100644 --- a/net/acme-common/Makefile +++ b/net/acme-common/Makefile @@ -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 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