diff options
| author | Andrew Manison <amanison@anselsystems.com> | 2011-03-01 23:38:58 +0000 |
|---|---|---|
| committer | Andrew Manison <amanison@anselsystems.com> | 2011-03-01 23:38:58 +0000 |
| commit | dc0398b3aad10676ce448b7e12f0f706de3db9cb (patch) | |
| tree | 2183fe4beda57894072eea1f76bda52906d6dc68 /testing/haproxy/haproxy.initd | |
| parent | c687517d0acc07cfd15f1f44d52417ea45dd5056 (diff) | |
| parent | 7d4cb2c3aeef2c99fb4f2fe8e1d7c9ff459d0028 (diff) | |
| download | aports-dc0398b3aad10676ce448b7e12f0f706de3db9cb.tar.bz2 aports-dc0398b3aad10676ce448b7e12f0f706de3db9cb.tar.xz | |
Merge remote-tracking branch 'alpine/master'
Diffstat (limited to 'testing/haproxy/haproxy.initd')
| -rw-r--r-- | testing/haproxy/haproxy.initd | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/testing/haproxy/haproxy.initd b/testing/haproxy/haproxy.initd deleted file mode 100644 index 68b7e0fefb..0000000000 --- a/testing/haproxy/haproxy.initd +++ /dev/null @@ -1,45 +0,0 @@ -#!/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 ${?} -} |
