From dd32f2472e60af948d2c36033b122acd7065f9f3 Mon Sep 17 00:00:00 2001 From: Patrick Connolly Date: Wed, 3 Jun 2015 13:45:22 -0400 Subject: [PATCH] Add chef_zero provisioner support. --- lib/vagrant-cachier/cap/linux/chef_file_cache_path.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-cachier/cap/linux/chef_file_cache_path.rb b/lib/vagrant-cachier/cap/linux/chef_file_cache_path.rb index 07d2136..4dddde5 100644 --- a/lib/vagrant-cachier/cap/linux/chef_file_cache_path.rb +++ b/lib/vagrant-cachier/cap/linux/chef_file_cache_path.rb @@ -5,7 +5,7 @@ module VagrantPlugins module ChefFileCachePath def self.chef_provisioner?(machine) provisioners = machine.config.vm.provisioners - chef_provisioners = [:chef_solo, :chef_client] + chef_provisioners = [:chef_solo, :chef_client, :chef_zero] compat_provisioners = provisioners.select { |p| chef_provisioners.include? p.name || p.type } if compat_provisioners.size > 1