diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-20 20:35:35 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-20 20:35:35 +0000 |
commit | 987d1900a8579200a912130c4bba56ce0491f214 (patch) | |
tree | fdc9e762f44fc3368901becc006f6d26a1ed0379 /rc.d | |
parent | 4b80059078f5b79c5710b8597766087814942628 (diff) | |
download | initscripts-987d1900a8579200a912130c4bba56ce0491f214.tar initscripts-987d1900a8579200a912130c4bba56ce0491f214.tar.gz initscripts-987d1900a8579200a912130c4bba56ce0491f214.tar.bz2 initscripts-987d1900a8579200a912130c4bba56ce0491f214.tar.xz initscripts-987d1900a8579200a912130c4bba56ce0491f214.zip |
Don't run rc.local through initlog.
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ if [ -d /etc/rc.d/rc$runlevel.d ]; then if egrep -q "(daemon |action )" $i ; then $i start else - if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" ]; then + if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local ]; then $i start else action "Starting $subsys" $i start |