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/irqbalance/S13irqbalance | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/irqbalance') diff --git a/package/irqbalance/S13irqbalance b/package/irqbalance/S13irqbalance index 1d713ae33..b06a3372e 100644 --- a/package/irqbalance/S13irqbalance +++ b/package/irqbalance/S13irqbalance @@ -9,7 +9,7 @@ PID="/var/run/irqbalance.pid" case "$1" in start) - echo -n "Starting irqbalance: " + printf "Starting irqbalance: " start-stop-daemon -S -q -x $EXEC -- $ARGS if [ $? != 0 ]; then echo "FAILED" @@ -20,7 +20,7 @@ case "$1" in pidof irqbalance > $PID ;; stop) - echo -n "Stopping irqbalance: " + printf "Stopping irqbalance: " start-stop-daemon -K -q -p $PID echo "OK" ;; -- cgit v1.2.3