Browse Source

package/postgresql: fix typo in init script info printout

Signed-off-by: Scott Fan <fancp2007@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Scott Fan 11 months ago
parent
commit
74f327e286
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/postgresql/S50postgresql

+ 1 - 1
package/postgresql/S50postgresql

@@ -6,7 +6,7 @@
 umask 077
 umask 077
 
 
 if [ ! -f /var/lib/pgsql/PG_VERSION ]; then
 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'
 	su - postgres -c '/usr/bin/pg_ctl initdb -D /var/lib/pgsql'
 	echo "done"
 	echo "done"
 fi
 fi