Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: H Hartley Sweeten <hartleys@visionengravers.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] Fix colon location in S01logging script
Date: Tue, 12 Jul 2011 17:45:22 -0700	[thread overview]
Message-ID: <201107121745.23113.hartleys@visionengravers.com> (raw)

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"

             reply	other threads:[~2011-07-13  0:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-13  0:45 H Hartley Sweeten [this message]
2011-07-13  6:14 ` [Buildroot] [PATCH] Fix colon location in S01logging script Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201107121745.23113.hartleys@visionengravers.com \
    --to=hartleys@visionengravers.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox