3

I am new to berkshelf and have tried a few samples using vagrant-berkshelf plugin. From the time i got to know that the vagrant-berkshelf plugin is going to get deprecated, i have been wondering if there is anyway i can use the berkshelf with vagrant without using the vagrant-berkshelf plugin. Please let me know how i can go about it.

  • Berkshelf core development team member announced the official deprecation process of Vagrant Berkshelf on January 28, 2014. He explained in the announcement like this: "Until we work out an official deprecation schedule, the team will continue to be responsive to issues and pull requests. It is likely that Vagrant Berkshelf will continue to be supported until the release of Berkshelf 4." the announcement can be found here: https://sethvargo.com/the-future-of-vagrant-berkshelf/ – Joel Handwell Sep 05 '14 at 02:38

1 Answers1

1

Have a look at this: https://github.com/berkshelf/vagrant-berkshelf

From the site you will need to run:

vagrant plugin install vagrant-berkshelf --plugin-version '>= 2.0.1'

Once the Vagrant Berkshelf plugin is installed it can be enabled in your Vagrantfile

Vagrant.configure("2") do |config|
  config.berkshelf.enabled = true
end
sethvargo
  • 26,739
  • 10
  • 86
  • 156
Joe
  • 2,987
  • 15
  • 24