* [Buildroot] [PATCH] Fix colon location in S01logging script
@ 2011-07-13 0:45 H Hartley Sweeten
2011-07-13 6:14 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: H Hartley Sweeten @ 2011-07-13 0:45 UTC (permalink / raw)
To: buildroot
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>
---
diff --git a/package/busybox/S01logging b/package/busybox/S01logging
index 6badebe..581f192 100644
--- a/package/busybox/S01logging
+++ b/package/busybox/S01logging
@@ -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"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-13 6:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-13 0:45 [Buildroot] [PATCH] Fix colon location in S01logging script H Hartley Sweeten
2011-07-13 6:14 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox