eaed3141b7
Closes Homebrew/homebrew#32020. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
25 lines
856 B
Ruby
25 lines
856 B
Ruby
require 'formula'
|
|
|
|
class Logstash < Formula
|
|
homepage 'http://logstash.net/'
|
|
url 'https://download.elasticsearch.org/logstash/logstash/logstash-1.4.2.tar.gz'
|
|
sha1 'd59ef579c7614c5df9bd69cfdce20ed371f728ff'
|
|
|
|
def install
|
|
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 without 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
|