aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rc
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2000-08-06 05:47:45 +0000
committerBill Nottingham <notting@redhat.com>2000-08-06 05:47:45 +0000
commitf37df7a6791706fd0fce0a3f5e9b2858401bfab8 (patch)
treedbed6e27043a4e8a4aa5ae9554edb61553d90e4e /rc.d/rc
parent6e3016030556c37994a9f3ecadd81bfa747b0b72 (diff)
downloadinitscripts-f37df7a6791706fd0fce0a3f5e9b2858401bfab8.tar
initscripts-f37df7a6791706fd0fce0a3f5e9b2858401bfab8.tar.gz
initscripts-f37df7a6791706fd0fce0a3f5e9b2858401bfab8.tar.bz2
initscripts-f37df7a6791706fd0fce0a3f5e9b2858401bfab8.tar.xz
initscripts-f37df7a6791706fd0fce0a3f5e9b2858401bfab8.zip
yet more colons. Also, fix the nousb grep
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