From bbec143bb3703dfab12fb8ab87f6fc900ace620c Mon Sep 17 00:00:00 2001 From: Liangbin Lian Date: Thu, 25 Dec 2025 12:58:32 +0800 Subject: [PATCH] luci.mk: fix the rpcd reload command Prevent it from affecting the rpcd process inside the containers Signed-off-by: Liangbin Lian --- luci.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci.mk b/luci.mk index 4f4e16803f..523361b121 100644 --- a/luci.mk +++ b/luci.mk @@ -233,7 +233,7 @@ define Package/$(PKG_NAME)/postinst [ -n "$${IPKG_INSTROOT}" ] || { \ rm -f /tmp/luci-indexcache.* rm -rf /tmp/luci-modulecache/ - killall -HUP rpcd 2>/dev/null + /etc/init.d/rpcd reload 2>/dev/null exit 0 } endef -- 2.30.2