diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-02-20 23:41:49 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-02-20 23:41:49 +0000 |
commit | fa1a2d30b8da857c23a3920bcf37e2bac072a865 (patch) | |
tree | e4da659e458a17170b72cc1b4f2e399d1eb8a2ca /net/balance | |
parent | d907549da6936c9c3f803d8a0ac5c81b4328d7d1 (diff) | |
download | ports-fa1a2d30b8da857c23a3920bcf37e2bac072a865.tar.gz ports-fa1a2d30b8da857c23a3920bcf37e2bac072a865.zip |
- Update to 3.19
PR: ports/77761
Submitted by: Gerard Samuel <fbsd-ports@trini0.org>
Approved by: Joseph Scott <joseph@randomnetworks.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=129428
Diffstat (limited to 'net/balance')
-rw-r--r-- | net/balance/Makefile | 2 | ||||
-rw-r--r-- | net/balance/distinfo | 4 | ||||
-rw-r--r-- | net/balance/files/balance.sh | 18 | ||||
-rw-r--r-- | net/balance/files/patch-Makefile | 2 |
4 files changed, 13 insertions, 13 deletions
diff --git a/net/balance/Makefile b/net/balance/Makefile index 893d97d0def0..1ce2e407fa19 100644 --- a/net/balance/Makefile +++ b/net/balance/Makefile @@ -6,7 +6,7 @@ # PORTNAME= balance -PORTVERSION= 3.15 +PORTVERSION= 3.19 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} \ http://www.inlab.de/ diff --git a/net/balance/distinfo b/net/balance/distinfo index c8a6f4bcb7c3..430363b1030a 100644 --- a/net/balance/distinfo +++ b/net/balance/distinfo @@ -1,2 +1,2 @@ -MD5 (balance-3.15.tar.gz) = c13392db7fdab2e80e1da6b469abf2a0 -SIZE (balance-3.15.tar.gz) = 21022 +MD5 (balance-3.19.tar.gz) = 7791586953fade0592d0cac215218167 +SIZE (balance-3.19.tar.gz) = 21351 diff --git a/net/balance/files/balance.sh b/net/balance/files/balance.sh index bfffe90a3b31..6a7de5b0d644 100644 --- a/net/balance/files/balance.sh +++ b/net/balance/files/balance.sh @@ -12,7 +12,7 @@ # #balance_enable="YES" #balance_hosts="host1" -#balance_host1_adress="host1.external.example" +#balance_host1_address="host1.external.example" #balance_host1_ports="http 8180" #balance_host1_targets="host1.internal.example" # @@ -34,10 +34,10 @@ start_cmd() if [ -x "${command}" ]; then for host in ${balance_hosts}; do eval ports=\"\${balance_${host}_ports}\" - eval adress=\"\${balance_${host}_adress}\" + eval address=\"\${balance_${host}_address}\" eval targets=\"\${balance_${host}_targets}\" for port in ${ports}; do - "${command}" -b ${adress} ${port} ${targets} + "${command}" -b ${address} ${port} ${targets} done done fi @@ -48,10 +48,10 @@ stop_cmd() if [ -x "${command}" ]; then for host in ${balance_hosts}; do eval ports=\"\${balance_${host}_ports}\" - eval adress=\"\${balance_${host}_adress}\" + eval address=\"\${balance_${host}_address}\" for port in ${ports}; do - echo "balance at ${adress}:${port}" - "${command}" -b ${adress} -c kill ${port} + echo "balance at ${address}:${port}" + "${command}" -b ${address} -c kill ${port} done done fi @@ -62,10 +62,10 @@ status_cmd() if [ -x "${command}" ]; then for host in ${balance_hosts}; do eval ports=\"\${balance_${host}_ports}\" - eval adress=\"\${balance_${host}_adress}\" + eval address=\"\${balance_${host}_address}\" for port in ${ports}; do - echo "balance at ${adress}:${port}" - "${command}" -b ${adress} -c show ${port} + echo "balance at ${address}:${port}" + "${command}" -b ${address} -c show ${port} done done fi diff --git a/net/balance/files/patch-Makefile b/net/balance/files/patch-Makefile index 1a56763ec1df..dad23bd84336 100644 --- a/net/balance/files/patch-Makefile +++ b/net/balance/files/patch-Makefile @@ -15,6 +15,6 @@ -CC=gcc +CC?=gcc - RELEASE=3.15 + RELEASE=3.19 balance: balance.c butils.o balance.h |