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/python-web2py/S51web2py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/python-web2py') diff --git a/package/python-web2py/S51web2py b/package/python-web2py/S51web2py index 1da9ef4fd3..8d229e16cf 100644 --- a/package/python-web2py/S51web2py +++ b/package/python-web2py/S51web2py @@ -2,7 +2,7 @@ case "$1" in start) - echo -n "Starting web2py: " + printf "Starting web2py: " start-stop-daemon -S -q -m -p /run/web2py.pid \ -c www-data \ -b -x /var/www/web2py/web2py.py \ @@ -10,7 +10,7 @@ case "$1" in [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) - echo -n "Stopping web2py: " + printf "Stopping web2py: " start-stop-daemon -K -q -p /run/web2py.pid [ $? = 0 ] && echo "OK" || echo "FAIL" ;; -- cgit v1.2.1