summaryrefslogtreecommitdiff
path: root/files/pgbouncer.sh
blob: 0d9d4f11ea408d8b8b9f3ae345b70614c4db46f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! @RCD_SCRIPTS_SHELL@
#
# $NetBSD: pgbouncer.sh,v 1.1.1.1 2011/09/03 22:05:52 mjl Exp $
#
# PROVIDE: pgbouncer
# REQUIRE: DAEMON
#

if [ -r /etc/rc.subr ]
then
	. /etc/rc.subr
fi

name="pgbouncer"
rcvar=${name}
command="@PREFIX@/bin/${name}"
pgbouncer_conf="@PKG_SYSCONFDIR@/${name}.ini"
required_files="${pgbouncer_conf}"
command_args="-d ${pgbouncer_conf}"
extra_commands="reload"
pgsql_user="@PGUSER@"
start_cmd="pgbouncer_start"

pidfile="@VARBASE@/run/${name}/${name}.pid"
if [ -r ${pgbouncer_conf} ] ; then
	pidfile=`grep -i pidfile /usr/pkg/etc/pgbouncer.ini | cut -d= -f2`
fi

pgbouncer_start()
{
        @ECHO@ "Starting ${name}."
	piddir=`dirname ${pidfile}`
	if [ ! -d ${piddir} ] ; then
		@MKDIR@ -p ${piddir}
		@CHOWN@ ${pgsql_user} ${piddir}
	fi

        doit="@SU@ -m ${pgsql_user} -c '${command} ${command_args}'"
        eval $doit
}

load_rc_config $name
run_rc_command "$1"