lib/berkshelf/vagrant/action.rb in vagrant-berkshelf-2.0.1 vs lib/berkshelf/vagrant/action.rb in vagrant-berkshelf-3.0.0.rc1

- old
+ new

@@ -6,11 +6,10 @@ require_relative 'action/clean' require_relative 'action/configure_chef' require_relative 'action/install' require_relative 'action/load_shelf' - require_relative 'action/set_ui' require_relative 'action/upload' class << self # Return the Berkshelf install middleware stack. When placed in the action chain # this stack will find retrieve and resolve the cookbook dependencies describe @@ -53,10 +52,9 @@ end def setup @setup ||= ::Vagrant::Action::Builder.new.tap do |b| b.use ::Vagrant::Action::Builtin::EnvSet, berkshelf: Berkshelf::Vagrant::Env.new - b.use Berkshelf::Vagrant::Action::SetUI b.use Berkshelf::Vagrant::Action::LoadShelf b.use Berkshelf::Vagrant::Action::ConfigureChef end end end