summaryrefslogtreecommitdiffstats
path: root/package/postgresql/S50postgresql
diff options
context:
space:
mode:
authorPeter Seiderer <ps.report@gmx.net>2014-04-04 22:14:01 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-04-20 18:50:49 +0200
commitad2e796df3b281fbaa3e54c492d6c08898ee9ccd (patch)
tree4021492d61f8f9c8e908a98d86d8fb2b48b751cf /package/postgresql/S50postgresql
parentd4f4e01ace99a6d21ca79c556ca53bf12b0fdbd8 (diff)
downloadbuildroot-ad2e796df3b281fbaa3e54c492d6c08898ee9ccd.tar.gz
buildroot-ad2e796df3b281fbaa3e54c492d6c08898ee9ccd.zip
postgresql: new package
Based on suggested new package by Marco Trapanese ([1]). [1] http://lists.busybox.net/pipermail/buildroot/2014-February/090661.html [Thomas: make it only available with glibc toolchains.] Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/postgresql/S50postgresql')
-rw-r--r--package/postgresql/S50postgresql44
1 files changed, 44 insertions, 0 deletions
diff --git a/package/postgresql/S50postgresql b/package/postgresql/S50postgresql
new file mode 100644
index 0000000000..86a8d8399f
--- /dev/null
+++ b/package/postgresql/S50postgresql
@@ -0,0 +1,44 @@
+#!/bin/sh
+#
+# start postgresql
+#
+
+umask 077
+
+if [ ! -f /var/lib/pgsql/PG_VERSION ]; then
+ echo "Initializing postgresql data base..."
+ su - postgres -c '/usr/bin/pg_ctl initdb -D /var/lib/pgsql'
+ echo "done"
+fi
+
+start() {
+ echo -n "Starting postgresql: "
+ su - postgres -c '/usr/bin/pg_ctl start -D /var/lib/pgsql -l logfile'
+ echo "OK"
+}
+stop() {
+ echo -n "Stopping postgresql: "
+ su - postgres -c '/usr/bin/pg_ctl stop -D /var/lib/pgsql -m fast'
+ echo "OK"
+}
+restart() {
+ stop
+ start
+}
+
+case "$1" in
+ start)
+ start
+ ;;
+ stop)
+ stop
+ ;;
+ restart|reload)
+ restart
+ ;;
+ *)
+ echo "Usage: $0 {start|stop|restart}"
+ exit 1
+esac
+
+exit $?
OpenPOWER on IntegriCloud