From 40af45e14f310447060dabf1c3d08ae39ab69953 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sun, 5 May 2024 19:46:35 +0200 Subject: [PATCH] build-nginx: Change --group from nogroup to users Debian doesn't have the "nobody" group, but Fedora doesn't have the "nogroup" group. >_< I hope that every distro has at least the "users" group. See-Also aae131783c4d906d2d25c2a172b0d9c89cfb60de --- scripts/build-nginx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-nginx b/scripts/build-nginx index 88ae6a2..d899403 100755 --- a/scripts/build-nginx +++ b/scripts/build-nginx @@ -46,7 +46,7 @@ configure() { --http-client-body-temp-path="client_body_temp" \ --http-proxy-temp-path="proxy_temp" \ --user=nobody \ - --group=nogroup \ + --group=users \ --with-cc="${CC:-cc}" \ --with-cc-opt="${CFLAGS:-}" \ --with-ld-opt="${LDFLAGS:-}" \