From 262fbd89b6e6aad61b269c2c4c89b41f2a37eabc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Fri, 7 Jul 2017 17:16:05 +0200 Subject: [PATCH] Specify the Chef version in the Vagrant config We don't need the vagrant-omnibus plugin anymore --- Vagrantfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 9a359c5..8a17220 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -82,13 +82,8 @@ Vagrant.configure(2) do |config| # sudo apt-get install -y apache2 # SHELL - # Install latest Chef via Omnibus - # Needs `vagrant plugin install vagrant-omnibus` - if Vagrant.has_plugin?("vagrant-omnibus") - config.omnibus.chef_version = "12.20.3" - end - config.vm.provision :chef_zero do |chef| + chef.version = '12.21.3' chef.cookbooks_path = ['cookbooks', 'site-cookbooks'] chef.data_bags_path = 'data_bags' chef.roles_path = 'roles'