ad2e796df3
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>
45 lines
641 B
Bash
45 lines
641 B
Bash
#!/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 $?
|