diff options
author | Bill Nottingham <notting@redhat.com> | 1999-04-13 15:37:07 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-04-13 15:37:07 +0000 |
commit | a26616531d78e568c6f3c076ff07d112eee2098d (patch) | |
tree | 81722f8097eeeeb301cf366aa0e4b942c8101f06 /rc.d | |
parent | c15181c1ab2b05c16459547b469743bafe2e68f6 (diff) | |
download | initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar.gz initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar.bz2 initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.tar.xz initscripts-a26616531d78e568c6f3c076ff07d112eee2098d.zip |
don't run single-user mode through initlog
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |