Skip to content

Instantly share code, notes, and snippets.

@double-z
Created March 31, 2015 23:22
Show Gist options
  • Save double-z/fbeb142c0c16eb5b2a15 to your computer and use it in GitHub Desktop.
Save double-z/fbeb142c0c16eb5b2a15 to your computer and use it in GitHub Desktop.
vagrant-provisioning-hosted-chef-server
chef_gem 'chef-provisioning-vagrant'
with_chef_server "https://api.opscode.com/organizations/zzondlo",
:client_name => Chef::Config[:node_name],
:signing_key_filename => Chef::Config[:client_key]
machine "vweb" do
action [:ready, :setup, :converge]
driver 'vagrant'
machine_options :vagrant_options => {
'vm.box' => 'opscode-ubuntu-12.04'
}
converge true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment