From 6eea6b524dc84907d5ea31495109110949987c34 Mon Sep 17 00:00:00 2001 From: Scott Fan Date: Mon, 26 Aug 2024 15:20:48 +0800 Subject: [PATCH] package/postgresql: fix typo in init script info printout Signed-off-by: Scott Fan Signed-off-by: Peter Korsgaard (cherry picked from commit 74f327e2869841b499d66cac6a7bd8a83b1269f5) Signed-off-by: Peter Korsgaard --- package/postgresql/S50postgresql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/postgresql/S50postgresql b/package/postgresql/S50postgresql index 1ece4fca9e..f8077600de 100644 --- a/package/postgresql/S50postgresql +++ b/package/postgresql/S50postgresql @@ -6,7 +6,7 @@ umask 077 if [ ! -f /var/lib/pgsql/PG_VERSION ]; then - echo "Initializing postgresql data base..." + echo "Initializing postgresql database..." su - postgres -c '/usr/bin/pg_ctl initdb -D /var/lib/pgsql' echo "done" fi