diff options
Diffstat (limited to 'main/haproxy/haproxy.initd')
-rw-r--r-- | main/haproxy/haproxy.initd | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/main/haproxy/haproxy.initd b/main/haproxy/haproxy.initd new file mode 100644 index 0000000000..68b7e0fefb --- /dev/null +++ b/main/haproxy/haproxy.initd @@ -0,0 +1,45 @@ +#!/sbin/runscript +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/net-proxy/haproxy/files/haproxy.initd,v 1.3 2007/10/27 10:42:32 mrness Exp $ + +opts="${opts} reload" + +CONFFILE=/etc/${SVCNAME}.cfg +PIDFILE=/var/run/${SVCNAME}.pid + +checkconfig() { + if [ ! -f "${CONFFILE}" ]; then + eerror "${CONFFILE} does not exist!" + return 1 + fi + /usr/sbin/haproxy -c -f "${CONFFILE}" >/dev/null +} + +depend() { + need net + after firewall + use dns logger +} + +start() { + checkconfig || return 1 + + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --quiet \ + --exec /usr/sbin/haproxy \ + -- -D -p "${PIDFILE}" -f "${CONFFILE}" + eend ${?} +} + +stop() { + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" + eend ${?} +} + +reload() { + ebegin "Reloading ${SVCNAME}" + /usr/sbin/haproxy -D -p "${PIDFILE}" -f "${CONFFILE}" -sf $(cat "${PIDFILE}") + eend ${?} +} |