logstash@5.6: remove
This commit is contained in:
parent
36ba413f4b
commit
ea6f2ae6f3
2 changed files with 0 additions and 85 deletions
|
@ -1 +0,0 @@
|
|||
../Formula/logstash.rb
|
|
@ -1,84 +0,0 @@
|
|||
class LogstashAT56 < Formula
|
||||
desc "Tool for managing events and logs"
|
||||
homepage "https://www.elastic.co/products/logstash"
|
||||
url "https://artifacts.elastic.co/downloads/logstash/logstash-5.6.5.tar.gz"
|
||||
sha256 "d307e8227d5a8eb21575f2c541d0b6e0f641fccde073629aba82f5fb3d5c62a2"
|
||||
head "https://github.com/elastic/logstash.git"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
keg_only :versioned_formula
|
||||
|
||||
depends_on :java => "1.8"
|
||||
|
||||
def install
|
||||
if build.head?
|
||||
# Build the package from source
|
||||
system "rake", "artifact:tar"
|
||||
# Extract the package to the current directory
|
||||
mkdir "tar"
|
||||
system "tar", "--strip-components=1", "-xf", Dir["build/logstash-*.tar.gz"].first, "-C", "tar"
|
||||
cd "tar"
|
||||
end
|
||||
|
||||
inreplace %w[bin/logstash], %r{^\. "\$\(cd `dirname \${SOURCEPATH}`\/\.\.; pwd\)\/bin\/logstash\.lib\.sh\"}, ". #{libexec}/bin/logstash.lib.sh"
|
||||
inreplace %w[bin/logstash-plugin], %r{^\. "\$\(cd `dirname \$0`\/\.\.; pwd\)\/bin\/logstash\.lib\.sh\"}, ". #{libexec}/bin/logstash.lib.sh"
|
||||
inreplace %w[bin/logstash.lib.sh], /^LOGSTASH_HOME=.*$/, "LOGSTASH_HOME=#{libexec}"
|
||||
libexec.install Dir["*"]
|
||||
bin.install libexec/"bin/logstash", libexec/"bin/logstash-plugin"
|
||||
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8"))
|
||||
end
|
||||
|
||||
def caveats; <<~EOS
|
||||
Please read the getting started guide located at:
|
||||
https://www.elastic.co/guide/en/logstash/current/getting-started-with-logstash.html
|
||||
EOS
|
||||
end
|
||||
|
||||
plist_options :manual => "logstash"
|
||||
|
||||
def plist
|
||||
<<~EOS
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>KeepAlive</key>
|
||||
<false/>
|
||||
<key>Label</key>
|
||||
<string>#{plist_name}</string>
|
||||
<key>ProgramArguments</key>
|
||||
<array>
|
||||
<string>#{opt_bin}/logstash</string>
|
||||
</array>
|
||||
<key>EnvironmentVariables</key>
|
||||
<dict>
|
||||
</dict>
|
||||
<key>RunAtLoad</key>
|
||||
<true/>
|
||||
<key>WorkingDirectory</key>
|
||||
<string>#{var}</string>
|
||||
<key>StandardErrorPath</key>
|
||||
<string>#{var}/log/logstash.log</string>
|
||||
<key>StandardOutPath</key>
|
||||
<string>#{var}/log/logstash.log</string>
|
||||
</dict>
|
||||
</plist>
|
||||
EOS
|
||||
end
|
||||
|
||||
test do
|
||||
# workaround https://github.com/elastic/logstash/issues/6378
|
||||
mkdir testpath/"config"
|
||||
["jvm.options", "log4j2.properties", "startup.options"].each { |f| cp prefix/"libexec/config/#{f}", testpath/"config" }
|
||||
(testpath/"config/logstash.yml").write <<~EOS
|
||||
path.queue: #{testpath}/queue
|
||||
EOS
|
||||
mkdir testpath/"data"
|
||||
mkdir testpath/"logs"
|
||||
mkdir testpath/"queue"
|
||||
|
||||
output = pipe_output("#{bin}/logstash -e '' --path.data=#{testpath}/data --path.logs=#{testpath}/logs --path.settings=#{testpath}/config --log.level=fatal", "hello world\n")
|
||||
assert_match /hello world/, output
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue