diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2010-02-03 07:41:11 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-02-03 07:41:11 +0000 |
| commit | 09ce0508afe6568cf580f53fb9952963125fff43 (patch) | |
| tree | be336c26f16f7fd1e5c5454738c9332da34fb2d1 /testing/haproxy | |
| parent | 9ad548df8aa2a860ca311453ed3d6a98962f32f5 (diff) | |
| download | aports-09ce0508afe6568cf580f53fb9952963125fff43.tar.bz2 aports-09ce0508afe6568cf580f53fb9952963125fff43.tar.xz | |
Revert "testing/*: remove from stable branch"
This reverts commit 9ad548df8aa2a860ca311453ed3d6a98962f32f5.
I'll delete them one by one.
Diffstat (limited to 'testing/haproxy')
| -rw-r--r-- | testing/haproxy/APKBUILD | 27 | ||||
| -rw-r--r-- | testing/haproxy/haproxy.initd | 45 |
2 files changed, 72 insertions, 0 deletions
diff --git a/testing/haproxy/APKBUILD b/testing/haproxy/APKBUILD new file mode 100644 index 0000000000..eadcabd1e0 --- /dev/null +++ b/testing/haproxy/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> +pkgname=haproxy +pkgver=1.3.20 +pkgrel=1 +pkgdesc="A TCP/HTTP reverse proxy for high availability environments" +url="http://haproxy.1wt.eu" +license="GPL" +depends="" +makedepends="" +install= +subpackages="" +source="http://haproxy.1wt.eu/download/1.3/src/$pkgname-$pkgver.tar.gz + haproxy.initd" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + make TARGET=linux26 || return 1 + make DESTDIR="$pkgdir" PREFIX=/usr install + + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + # install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname +} + +md5sums="e37046e0cb2f407d92c41d7731d1dd10 haproxy-1.3.20.tar.gz +7d26095c6f899b0ef00bedecaca58864 haproxy.initd" diff --git a/testing/haproxy/haproxy.initd b/testing/haproxy/haproxy.initd new file mode 100644 index 0000000000..82a1067591 --- /dev/null +++ b/testing/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/bin/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/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 ${?} +} |
