logstash 1.4.0

Closes Homebrew/homebrew#28598.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Matthew Hawkins 2014-04-22 13:50:43 +10:00 committed by Adam Vandenberg
parent a28fc81c60
commit 55760a0a7a

View file

@ -2,11 +2,24 @@ require 'formula'
class Logstash < Formula
homepage 'http://logstash.net/'
url 'https://download.elasticsearch.org/logstash/logstash/logstash-1.3.3-flatjar.jar'
sha1 '8effc7027093188b968fed37513ca647f96d6d8c'
url 'https://download.elasticsearch.org/logstash/logstash/logstash-1.4.0.tar.gz'
sha1 '009c9d3d17b781b6ad2cceb776064cda6c6b3957'
def install
libexec.install "logstash-#{version}-flatjar.jar"
bin.write_jar_script libexec/"logstash-#{version}-flatjar.jar", "logstash"
inreplace %w{bin/logstash bin/logstash.lib.sh}, /^basedir=.*$/, "basedir=#{libexec}"
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/logstash"
end
def caveats; <<-EOS.undent
Logstash 1.4 emits an unhelpful error if you try to start it sans config.
Please read the getting started guide located at:
http://logstash.net/docs/latest/tutorials/getting-started-with-logstash
EOS
end
test do
system "#{bin}/logstash", "--version"
system "/bin/echo 'hello world' | #{bin}/logstash agent -e 'input { stdin { type => stdin } } output { stdout { codec => rubydebug } }'"
end
end