mirror of
https://github.com/nginx/nginx.git
synced 2024-11-26 02:40:46 -06:00
fix --group= vs --user=
This commit is contained in:
parent
5fd6d349c8
commit
80eec93a5f
@ -4,7 +4,8 @@
|
||||
|
||||
NGX_USER=${NGX_USER:-nobody}
|
||||
|
||||
if [ -z "$NGX_GROUP" -a $NGX_USER = nobody ] ; then
|
||||
if [ -z "$NGX_GROUP" ]; then
|
||||
if [ $NGX_USER = nobody ]; then
|
||||
if grep nobody /etc/group 2>&1 >/dev/null; then
|
||||
echo "checking for nobody group ... found"
|
||||
NGX_GROUP=nobody
|
||||
@ -19,10 +20,10 @@ if [ -z "$NGX_GROUP" -a $NGX_USER = nobody ] ; then
|
||||
NGX_GROUP=nobody
|
||||
fi
|
||||
fi
|
||||
|
||||
else
|
||||
NGX_GROUP=$NGX_USER
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
ngx_feature="poll()"
|
||||
|
Loading…
Reference in New Issue
Block a user