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.
Asked
Active
Viewed 286 times
3
-
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 Answers
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
-
Thanks but I am looking for a alternative where i do not have to use the vagrant-berkshelf plugin. – user3757056 Jul 22 '14 at 04:46
-
1An alternative like https://github.com/fgrehm/ventriloquist or does it still have to use Berkshelf? – Joe Jul 22 '14 at 17:12
-