Skip to content

Commit

Permalink
Check for the nginx group used in fedora
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcj committed Jul 31, 2023
1 parent a0f79a3 commit 3836bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ AC_ARG_WITH([webserver-group], [AS_HELP_STRING([--with-webserver-group=GROUP],
if test "x$with_webserver_group" = x; then
# Try a number of group names and choose first one found
found=0
for g in www-data apache httpd ; do
for g in www-data apache httpd nginx ; do
if getent group $g >/dev/null 2>&1 ; then
found=1
break
Expand Down

0 comments on commit 3836bcc

Please sign in to comment.