15 lines
290 B
Bash
15 lines
290 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: pgbouncer.rc,v 1.2 2011/01/13 16:31:45 ajacoutot Exp $
|
|
|
|
daemon="${TRUEPREFIX}/bin/pgbouncer"
|
|
daemon_flags="-q -d -u _pgbouncer ${SYSCONFDIR}/pgbouncer/pgbouncer.ini"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_pre() {
|
|
/usr/bin/install -d -o _pgbouncer /var/run/pgbouncer
|
|
}
|
|
|
|
rc_cmd $1
|