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:
Pier-Hugues Pellerin 2017-09-15 13:50:11 -04:00
parent 4dc2fd3ddd
commit ceb6c53ace

View file

@ -51,24 +51,6 @@ namespace "plugin" do
task.reenable # Allow this task to be run again task.reenable # Allow this task to be run again
end 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| task "clean-local-core-gem", [:name, :path] do |task, args|
name = args[:name] name = args[:name]
path = args[:path] path = args[:path]