Change chef solo to use `run_list` instead of `recipes`

This commit is contained in:
Mitchell Hashimoto 2010-03-10 18:34:52 -08:00
parent 759d904628
commit f6bc0ff5fc
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module Vagrant
@provisioning_path = "/tmp/vagrant-chef"
@json = {
:instance_role => "vagrant",
:recipes => ["vagrant_main"]
:run_list => ["recipe[vagrant_main]"]
}
end