浏览代码

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