mirror of
https://github.com/openwrt/packages.git
synced 2025-12-27 03:24:57 +04:00
net/mwan3: add Makefile postinst and postrm for rpcd
Restart rpcd on package install/remove Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
@@ -39,6 +39,22 @@ endef
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/mwan3/postinst
|
||||
#!/bin/sh
|
||||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||
/etc/init.d/rpcd restart
|
||||
fi
|
||||
exit 0
|
||||
endef
|
||||
|
||||
define Package/mwan3/postrm
|
||||
#!/bin/sh
|
||||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||
/etc/init.d/rpcd restart
|
||||
fi
|
||||
exit 0
|
||||
endef
|
||||
|
||||
define Package/mwan3/install
|
||||
$(CP) ./files/* $(1)
|
||||
endef
|
||||
|
||||
Reference in New Issue
Block a user