diff options
author | Bill Nottingham <notting@redhat.com> | 1999-02-04 19:11:11 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-02-04 19:11:11 +0000 |
commit | ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c (patch) | |
tree | 3c12193fed2a085b512af8cc30d7865adfb10186 /rc.d/rc | |
parent | e8d2f95c03d1df94ca6ab9bab11f0f1d8e8c5893 (diff) | |
download | initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.gz initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.bz2 initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.tar.xz initscripts-ae6c4e57c4eda13956a9e5efe0956fd5c90e3a7c.zip |
fixes
Diffstat (limited to 'rc.d/rc')
-rwxr-xr-x | rc.d/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ if [ -d /etc/rc.d/rc$runlevel.d ]; then if egrep -q "(killproc |action )" $i ; then $i stop else - action -n "Stopping $subsys" $i stop + action "Stopping $subsys" $i stop fi done @@ -96,7 +96,7 @@ if [ -d /etc/rc.d/rc$runlevel.d ]; then if [ "$subsys" = "halt" ] || [ "$subsys" = "reboot" ]; then $i start else - action -n "Starting $subsys" $i start + action "Starting $subsys" $i start fi fi done |