Browse Source

chrony: S49chrony: fix starting message

Purely cosmetical. The OK/FAIL should go on the same line as "Starting ..".

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 10 years ago
parent
commit
85467bb616
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/chrony/S49chrony

+ 1 - 1
package/chrony/S49chrony

@@ -6,7 +6,7 @@
 
 case "$1" in
   start)
-	echo "Starting chrony: "
+	echo -n "Starting chrony: "
 	chronyd && echo "OK" || echo "FAIL"
 	;;
   stop)