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