+ upgrade to 9.0.1 + move readme to new location + add a rc script A dump / restore is needed for this upgrade. See http://openbsd.raveland.org/ports/postgresql/UPGRADE_HOWTO.txt if you need help for this. ok jasper@, eric@
24 lines
468 B
Bash
24 lines
468 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: postgresql.rc,v 1.1 2010/11/08 14:12:24 pea Exp $
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
daemon="${TRUEPREFIX}/bin/postgres"
|
|
bin="${TRUEPREFIX}/bin/pg_ctl"
|
|
datadir="/var/postgresql/data"
|
|
|
|
rc_start() {
|
|
/usr/bin/su -l _postgresql -c \
|
|
"${bin} -D ${datadir} start -l /var/postgresql/logfile" \
|
|
>/dev/null
|
|
}
|
|
|
|
rc_stop() {
|
|
/usr/bin/su -l _postgresql -c \
|
|
"${bin} -D ${datadir} stop -m fast" >/dev/null && \
|
|
/bin/rm -f ${datadir}/postmaster.pid
|
|
}
|
|
|
|
rc_cmd $1
|