mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
9a8b5ccd06
daemon scripts and bump subpackages that contain the *.rc scripts. discussed with and OK aja@ OK tb
34 lines
618 B
Bash
34 lines
618 B
Bash
#!/bin/ksh
|
|
#
|
|
# $OpenBSD: postgresql.rc,v 1.12 2018/01/11 19:27:01 rpe Exp $
|
|
|
|
datadir="/var/postgresql/data"
|
|
|
|
daemon="${TRUEPREFIX}/bin/pg_ctl"
|
|
daemon_flags="-w -l /var/postgresql/logfile"
|
|
daemon_user="_postgresql"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_usercheck=NO
|
|
|
|
rc_check() {
|
|
${rcexec} "${daemon} -D ${datadir} status"
|
|
}
|
|
|
|
rc_reload() {
|
|
${rcexec} "${daemon} -D ${datadir} reload"
|
|
}
|
|
|
|
rc_start() {
|
|
rm -f ${datadir}/postmaster.pid
|
|
${rcexec} "${daemon} -D ${datadir} start ${daemon_flags}"
|
|
}
|
|
|
|
rc_stop() {
|
|
${rcexec} "${daemon} -D ${datadir} stop -m fast" || \
|
|
${rcexec} "${daemon} -D ${datadir} stop -m immediate"
|
|
}
|
|
|
|
rc_cmd $1
|