Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created April 29, 2014 13:56
Show Gist options
  • Save Voronenko/11401123 to your computer and use it in GitHub Desktop.
Save Voronenko/11401123 to your computer and use it in GitHub Desktop.
ubuntu 12.04 with built in chef minimal setup
Vagrant.configure("2") do |c|
c.vm.box = "opscode-ubuntu-12.04"
c.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box"
c.vm.hostname = "default-ubuntu-1204.vagrantup.com"
c.vm.synced_folder ".", "/vagrant", disabled: true
c.vm.provider :virtualbox do |p|
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment