aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rc
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/rc')
-rwxr-xr-xrc.d/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc b/rc.d/rc
index 449df6cb..ca83b6e5 100755
--- a/rc.d/rc
+++ b/rc.d/rc
@@ -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