aboutsummaryrefslogtreecommitdiffstats
path: root/unstable/haproxy/haproxy.initd
diff options
context:
space:
mode:
authorMichael Mason <ms13sp@gmail.com>2009-08-25 22:59:14 +0000
committerMichael Mason <ms13sp@gmail.com>2009-08-25 22:59:14 +0000
commitd9ce4aad94e38485419d91c49b4eb6a71d44cae7 (patch)
treede2539c81bfb8e1898009211b477f8c749ea3b82 /unstable/haproxy/haproxy.initd
parent708332729740e2d54c18d71d2cacbe20d65f7cc2 (diff)
downloadaports-d9ce4aad94e38485419d91c49b4eb6a71d44cae7.tar.bz2
aports-d9ce4aad94e38485419d91c49b4eb6a71d44cae7.tar.xz
unstables/haproxy moved to testing/haproxy
Diffstat (limited to 'unstable/haproxy/haproxy.initd')
-rw-r--r--unstable/haproxy/haproxy.initd44
1 files changed, 0 insertions, 44 deletions
diff --git a/unstable/haproxy/haproxy.initd b/unstable/haproxy/haproxy.initd
deleted file mode 100644
index 10466144b1..0000000000
--- a/unstable/haproxy/haproxy.initd
+++ /dev/null
@@ -1,44 +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/bin/haproxy -c -f "${CONFFILE}" >/dev/null
-}
-
-depend() {
- need net
- use dns logger
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --quiet \
- --exec /usr/bin/haproxy \
- -- -D -p "${PIDFILE}" -f "${CONFFILE}"
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --quiet --pidfile "${PIDFILE}"
- eend ${?}
-}
-
-reload() {
- ebegin "Reloading ${SVCNAME}"
- /usr/bin/haproxy -D -p "${PIDFILE}" -f "${CONFFILE}" -sf $(cat "${PIDFILE}")
- eend ${?}
-}