Fix colon location in S01logging script

The S01logging script currently displays the start/stop messages like this:

Start logging :OK

The normal form for these messages is:

Start logging: OK

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
H Hartley Sweeten 2011-07-12 17:45:22 -07:00 committed by Peter Korsgaard
parent aa0c4d4e48
commit 72eb844be6

View File

@ -5,13 +5,13 @@
case "$1" in
start)
echo -n "Starting logging :"
echo -n "Starting logging: "
start-stop-daemon -S -q -p /var/run/syslog.pid --exec /sbin/syslogd -- -m 0
start-stop-daemon -S -q -p /var/run/klogd.pid --exec /sbin/klogd
echo "OK"
;;
stop)
echo -n "Stopping logging :"
echo -n "Stopping logging: "
start-stop-daemon -K -q -p /var/run/syslog.pid
start-stop-daemon -K -q -p /var/run/klogd.pid
echo "OK"