24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-06 21:37:17 +02:00

Fix so script runs correctly when invoked by root (EJAB-1152)

SVN Revision: 2863
This commit is contained in:
Badlop 2010-01-05 20:31:19 +00:00
parent 3f1c8f98ed
commit c2f242b4a6

View File

@ -60,7 +60,7 @@ ID=`id -g`
EJID=`id -g $INSTALLUSER`
EXEC_CMD="false"
if [ $ID -eq 0 ] ; then
EXEC_CMD="su ${INSTALLUSER} -c"
EXEC_CMD="su ${INSTALLUSER} -p -c"
fi
if [ "$ID" -eq "$EJID" ] ; then
EXEC_CMD="sh -c"