From d9ce4aad94e38485419d91c49b4eb6a71d44cae7 Mon Sep 17 00:00:00 2001 From: Michael Mason Date: Tue, 25 Aug 2009 22:59:14 +0000 Subject: unstables/haproxy moved to testing/haproxy --- unstable/haproxy/APKBUILD | 27 -------------------------- unstable/haproxy/haproxy.initd | 44 ------------------------------------------ 2 files changed, 71 deletions(-) delete mode 100644 unstable/haproxy/APKBUILD delete mode 100644 unstable/haproxy/haproxy.initd (limited to 'unstable') diff --git a/unstable/haproxy/APKBUILD b/unstable/haproxy/APKBUILD deleted file mode 100644 index d37caf880..000000000 --- a/unstable/haproxy/APKBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# Contributor: Michael Mason -# Maintainer: Michael Mason -pkgname=haproxy -pkgver=1.3.20 -pkgrel=0 -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 -a7c6178dc4078fa233084ee36c8b440c haproxy.initd" diff --git a/unstable/haproxy/haproxy.initd b/unstable/haproxy/haproxy.initd deleted file mode 100644 index 10466144b..000000000 --- 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 ${?} -} -- cgit v1.2.3