From 8f5dacef26a350966ea6b92bbd15e09e95537dc8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 12 Sep 2010 17:10:09 -0600 Subject: [PATCH] "vagrant_main" is no longer the default run list for chef. It now starts empty. --- CHANGELOG.md | 3 +++ lib/vagrant/provisioners/chef.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d3b3ab0b..18adf1b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## 0.6.0 (unreleased) + - "vagrant_main" is no longer the default run list. Instead, chef + run list starts empty. It is up to you to specify all recipes in + the Vagrantfile now. - Fixed various issues with certain action middleware not working if the VM was not created. - SSH connection is retried 5 times if there is a connection refused. diff --git a/lib/vagrant/provisioners/chef.rb b/lib/vagrant/provisioners/chef.rb index d72553ee9..cd27a2c55 100644 --- a/lib/vagrant/provisioners/chef.rb +++ b/lib/vagrant/provisioners/chef.rb @@ -92,7 +92,7 @@ module Vagrant @log_level = :info @json = { :instance_role => "vagrant", - :run_list => ["recipe[vagrant_main]"] + :run_list => [] } end