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/mysql/S97mysqld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/mysql/S97mysqld') diff --git a/package/mysql/S97mysqld b/package/mysql/S97mysqld index 6f25403b80..dd7f57f13f 100644 --- a/package/mysql/S97mysqld +++ b/package/mysql/S97mysqld @@ -9,12 +9,12 @@ case "$1" in # We don't use start-stop-daemon because mysqld has # its own wrapper script. - echo -n "Starting mysql..." + printf "Starting mysql..." /usr/bin/mysqld_safe --pid-file=/var/run/mysqld.pid & echo "done." ;; stop) - echo -n "Stopping mysql..." + printf "Stopping mysql..." if test -f /var/run/mysqld.pid ; then kill `cat /var/run/mysqld.pid` fi -- cgit v1.2.3