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/postgresql/S50postgresql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/postgresql/S50postgresql') diff --git a/package/postgresql/S50postgresql b/package/postgresql/S50postgresql index a895bcfcef..1ece4fca9e 100644 --- a/package/postgresql/S50postgresql +++ b/package/postgresql/S50postgresql @@ -12,12 +12,12 @@ if [ ! -f /var/lib/pgsql/PG_VERSION ]; then fi start() { - echo -n "Starting postgresql: " + printf "Starting postgresql: " su - postgres -c '/usr/bin/pg_ctl start -w -D /var/lib/pgsql -l logfile' echo "OK" } stop() { - echo -n "Stopping postgresql: " + printf "Stopping postgresql: " su - postgres -c '/usr/bin/pg_ctl stop -D /var/lib/pgsql -m fast' echo "OK" } -- cgit v1.2.3