summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-04-13 15:37:07 +0000
committerBill Nottingham <notting@redhat.com>1999-04-13 15:37:07 +0000
commita26616531d78e568c6f3c076ff07d112eee2098d (patch)
tree81722f8097eeeeb301cf366aa0e4b942c8101f06
parentc15181c1ab2b05c16459547b469743bafe2e68f6 (diff)
downloadinitscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar.gz
initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar.xz
initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.zip
don't run single-user mode through initlog
-rwxr-xr-xrc.d/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc b/rc.d/rc
index ca83b6e5..533c4de5 100755
--- a/rc.d/rc
+++ b/rc.d/rc
@@ -93,7 +93,7 @@ if [ -d /etc/rc.d/rc$runlevel.d ]; then
if egrep -q "(daemon |action )" $i ; then
$i start
else
- if [ "$subsys" = "halt" ] || [ "$subsys" = "reboot" ]; then
+ if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" ]; then
$i start
else
action "Starting $subsys" $i start