diff options
author | Bill Nottingham <notting@redhat.com> | 2004-10-04 17:28:36 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-10-04 17:28:36 +0000 |
commit | 068f2444013c4c4fcb021d1200553482b012656f (patch) | |
tree | cc7ee50cd26be6bc815b989766e37fb902f0d28c /rc.d/init.d | |
parent | ded1dc363e66f9b9354efe6b2ef45084ed6db916 (diff) | |
download | initscripts-068f2444013c4c4fcb021d1200553482b012656f.tar initscripts-068f2444013c4c4fcb021d1200553482b012656f.tar.gz initscripts-068f2444013c4c4fcb021d1200553482b012656f.tar.bz2 initscripts-068f2444013c4c4fcb021d1200553482b012656f.tar.xz initscripts-068f2444013c4c4fcb021d1200553482b012656f.zip |
use runuser instead of su, require it
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 8bd2dba8..c11d9cf9 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -147,7 +147,7 @@ daemon() { if [ -z "$user" ]; then $nice initlog $INITLOG_ARGS -c "$*" else - $nice initlog $INITLOG_ARGS -c "su -s /bin/bash - $user -c \"$*\"" + $nice initlog $INITLOG_ARGS -c "runuser -s /bin/bash - $user -c \"$*\"" fi [ "$?" -eq 0 ] && success $"$base startup" || failure $"$base startup" } |