From: Liangbin Lian Date: Thu, 25 Dec 2025 04:58:32 +0000 (+0800) Subject: luci.mk: fix the rpcd reload command X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;ds=inline;p=project%2Fluci.git luci.mk: fix the rpcd reload command Prevent it from affecting the rpcd process inside the containers Signed-off-by: Liangbin Lian --- 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