Skip to content

Instantly share code, notes, and snippets.

@tsabat
Created April 19, 2013 18:23
Show Gist options
  • Save tsabat/5422190 to your computer and use it in GitHub Desktop.
Save tsabat/5422190 to your computer and use it in GitHub Desktop.
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["cookbooks"]
chef.roles_path = "roles"
if ENV['CHEF_DEBUG']
chef.log_level = :debug
end
chef.data_bags_path = 'data_bags'
if ENV['CHEF_RUN']
chef.run_list = ['recipe[chef_solo]'] << ENV['CHEF_RUN'].split(',')
else
chef.run_list = 'recipe[chef_solo]'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment