mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Remove uneeded task to install all the possible plugins from the logstash-plugin organization
This command was error prone, some plugins on the logstash-plugin organization are currently broken. Fixes #8281
This commit is contained in:
parent
4dc2fd3ddd
commit
ceb6c53ace
1 changed files with 0 additions and 18 deletions
|
@ -51,24 +51,6 @@ namespace "plugin" do
|
|||
task.reenable # Allow this task to be run again
|
||||
end
|
||||
|
||||
task "install-all" => "bootstrap" do
|
||||
puts("[plugin:install-all] Installing all plugins from https://github.com/logstash-plugins")
|
||||
p = *LogStash::RakeLib.fetch_all_plugins
|
||||
# Install plugin one by one, ignoring plugins that have issues. Otherwise, one bad plugin will
|
||||
# blow up the entire install process.
|
||||
# TODO Push this downstream to #install_plugins
|
||||
p.each do |plugin|
|
||||
begin
|
||||
install_plugins("--no-verify", "--preserve", plugin)
|
||||
rescue
|
||||
puts "Unable to install #{plugin}. Skipping"
|
||||
next
|
||||
end
|
||||
end
|
||||
|
||||
task.reenable # Allow this task to be run again
|
||||
end
|
||||
|
||||
task "clean-local-core-gem", [:name, :path] do |task, args|
|
||||
name = args[:name]
|
||||
path = args[:path]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue