Преглед изворни кода

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 месеци
родитељ
комит
74f327e286
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      package/postgresql/S50postgresql

+ 1 - 1
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