diff --git a/plugins/commands/plugin/action.rb b/plugins/commands/plugin/action.rb index e1ed6dbd7..5412b460f 100644 --- a/plugins/commands/plugin/action.rb +++ b/plugins/commands/plugin/action.rb @@ -5,13 +5,14 @@ require "vagrant/action/builder" module VagrantPlugins module CommandPlugin module Action - # This middleware sequence will install a plugin. + # This middleware sequence will remove all plugins. def self.action_expunge Vagrant::Action::Builder.new.tap do |b| b.use ExpungePlugins end end + # This middleware sequence will install a plugin. def self.action_install Vagrant::Action::Builder.new.tap do |b| b.use InstallGem