From 0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c Mon Sep 17 00:00:00 2001 From: Maxime Hadjinlian Date: Sat, 3 Oct 2015 23:29:57 +0200 Subject: package: Replace 'echo -n' by 'printf' 'echo -n' is not a POSIX construct (no flag support), we shoud use 'printf', especially in init script. This patch was generated by the following command line: git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/' Signed-off-by: Maxime Hadjinlian Reviewed-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- package/dnsmasq/S80dnsmasq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/dnsmasq') diff --git a/package/dnsmasq/S80dnsmasq b/package/dnsmasq/S80dnsmasq index 587751e5bf..d2f8b0f6b4 100755 --- a/package/dnsmasq/S80dnsmasq +++ b/package/dnsmasq/S80dnsmasq @@ -5,12 +5,12 @@ case "$1" in start) - echo -n "Starting dnsmasq: " + printf "Starting dnsmasq: " start-stop-daemon -S -x /usr/sbin/dnsmasq [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) - echo -n "Stopping dnsmasq: " + printf "Stopping dnsmasq: " start-stop-daemon -K -q -x /usr/sbin/dnsmasq [ $? = 0 ] && echo "OK" || echo "FAIL" ;; -- cgit v1.2.1