fix: ensure group is set to nogroup in start_service function

This commit is contained in:
SunBK201 2025-10-26 22:54:05 +08:00
parent 48e24743af
commit 985c62b189

View File

@ -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
}