diff options
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 |