From f6bc0ff5fca3419e3f40f15d5f74a32a295996fc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 10 Mar 2010 18:34:52 -0800 Subject: [PATCH] Change chef solo to use `run_list` instead of `recipes` --- lib/vagrant/provisioners/chef_solo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/provisioners/chef_solo.rb b/lib/vagrant/provisioners/chef_solo.rb index 0fb4b37c2..ec689a9f7 100644 --- a/lib/vagrant/provisioners/chef_solo.rb +++ b/lib/vagrant/provisioners/chef_solo.rb @@ -13,7 +13,7 @@ module Vagrant @provisioning_path = "/tmp/vagrant-chef" @json = { :instance_role => "vagrant", - :recipes => ["vagrant_main"] + :run_list => ["recipe[vagrant_main]"] } end