2010-11-08 09:12:24 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2010-12-24 05:40:04 -05:00
|
|
|
# $OpenBSD: postgresql.rc,v 1.4 2010/12/24 10:40:05 ajacoutot Exp $
|
2010-11-08 09:12:24 -05:00
|
|
|
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
|
|
|
|
daemon="${TRUEPREFIX}/bin/postgres"
|
2010-12-13 11:14:38 -05:00
|
|
|
daemon_user="_postgresql"
|
|
|
|
|
2010-12-24 05:40:04 -05:00
|
|
|
rc_conf
|
|
|
|
|
2010-11-08 09:12:24 -05:00
|
|
|
bin="${TRUEPREFIX}/bin/pg_ctl"
|
|
|
|
datadir="/var/postgresql/data"
|
|
|
|
|
|
|
|
rc_start() {
|
2010-12-15 06:32:26 -05:00
|
|
|
rm -f ${datadir}/postmaster.pid
|
2010-12-24 05:40:04 -05:00
|
|
|
su -l -c ${daemon_class} -s ${daemon_shell} ${daemon_user} \
|
|
|
|
-c "${bin} -D ${datadir} start -l /var/postgresql/logfile" >/dev/null
|
2010-11-08 09:12:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rc_stop() {
|
2010-12-24 05:40:04 -05:00
|
|
|
su -l -c ${daemon_class} -s ${daemon_shell} ${daemon_user} \
|
|
|
|
-c "${bin} -D ${datadir} stop -m fast" >/dev/null
|
2010-11-08 09:12:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rc_cmd $1
|