balance 3.54
Balance, a simple TCP load balancer Balance is handy because it requires no configuration. Just a few command line args and you have a running TCP proxy with or without load balancing. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
dd8bb6a408
commit
177c1b79d7
1 changed files with 14 additions and 0 deletions
14
Formula/balance.rb
Normal file
14
Formula/balance.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
require 'formula'
|
||||
|
||||
class Balance <Formula
|
||||
url 'http://www.inlab.de/balance-3.54.tar.gz'
|
||||
homepage 'http://www.inlab.de/balance.html'
|
||||
md5 '99854615cc58ceb2c5bbf29e35d18018'
|
||||
|
||||
def install
|
||||
system "make"
|
||||
|
||||
bin.install "balance"
|
||||
man1.install "balance.1"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue