From 985c62b189b4ebff66a9cb8bec9ca24e2fe47d15 Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Sun, 26 Oct 2025 22:54:05 +0800 Subject: [PATCH] fix: ensure group is set to nogroup in start_service function --- openwrt/files/ua3f.init | 1 + 1 file changed, 1 insertion(+) diff --git a/openwrt/files/ua3f.init b/openwrt/files/ua3f.init index 29cf225..613e585 100755 --- a/openwrt/files/ua3f.init +++ b/openwrt/files/ua3f.init @@ -52,6 +52,7 @@ start_service() { elif id -u nobody >/dev/null 2>&1; then procd_set_param user nobody fi + procd_set_param group nogroup procd_close_instance }