forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgbouncer.initd-r1
executable file
·83 lines (64 loc) · 2.16 KB
/
pgbouncer.initd-r1
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/sbin/openrc-run
extra_started_commands="reload"
PIDFILE="/run/pgbouncer.pid"
depend() {
use net
after postgresql
}
get_config() {
[ -f "${INIFILE}" ] || eend 1 "'${INIFILE}' not found"
eval echo $(sed -e 's:;.*::' "${INIFILE}" | \
awk '$1 == "'$1'" { print ($2 == "=" ? $3 : $2) }')
}
start_pre() {
local s="$(get_config unix_socket_dir)"
if [ -n "${s}" ] ; then
checkpath -o root:postgres -m 1775 -d "${s}" || return 1
local listen_port="$(get_config listen_port)"
if [ -e "${s%/}/.s.PGSQL.${listen_port}" ] ; then
eerror "Socket conflict."
eerror "A server is already listening on:"
eerror " ${s%/}/.s.PGSQL.${listen_port}"
eerror "HINT: Change listen_port in pgbouncer.ini to listen on a"
eerror "different socket."
return 1
fi
fi
checkpath -o pgbouncer:postgres -m 0755 \
-d "$(dirname $(get_config logfile))" || return 1
checkpath -o pgbouncer:postgres -m 0640 \
-f "$(get_config logfile)" || return 1
return 0
}
start() {
ebegin "Starting PgBouncer"
[ -f ${PIDFILE} ] && rm ${PIDFILE}
start-stop-daemon --start \
--pidfile ${PIDFILE} \
--background \
--make-pidfile \
--user pgbouncer \
--exec /usr/bin/pgbouncer \
-- -q "${INIFILE}"
eend $?
}
stop() {
local seconds=$(( ${NICE_TIMEOUT} + ${FORCE_QUIT_TIMEOUT} ))
ebegin "Stopping PgBouncer (this can take up to ${seconds} seconds)"
local retries=SIGINT/${NICE_TIMEOUT}
if [ "${FORCE_QUIT}" = "YES" ] ; then
einfo "FORCE_QUIT enabled."
retries="${retries}/SIGTERM/${FORCE_QUIT_TIMEOUT}"
fi
# Loops through nice and force quit in one go.
start-stop-daemon --stop \
--user pgbouncer \
--pidfile ${PIDFILE} \
--retry ${retries}
eend $?
}
reload() {
ebegin "Reloading PgBouncer configuration from '${INIFILE}'"
start-stop-daemon --signal HUP --pidfile ${PIDFILE}
eend $?
}