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 58fef4bf..9a284ba1 100755
--- a/rc.d/rc
+++ b/rc.d/rc
@@ -58,7 +58,7 @@ if [ -d /etc/rc$runlevel.d ]; then
if egrep -q "(killproc |action )" $i ; then
$i stop
else
- action "Stopping $subsys" $i stop
+ action "Stopping $subsys: " $i stop
fi
done
@@ -101,7 +101,7 @@ if [ -d /etc/rc$runlevel.d ]; then
if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local" ]; then
$i start
else
- action "Starting $subsys" $i start
+ action "Starting $subsys: " $i start
fi
fi
done