Created
April 29, 2014 13:56
-
-
Save Voronenko/11401123 to your computer and use it in GitHub Desktop.
ubuntu 12.04 with built in chef minimal setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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