Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliandunn/9493390 to your computer and use it in GitHub Desktop.
Save juliandunn/9493390 to your computer and use it in GitHub Desktop.
test-kitchen-generated Vagrantfile for FreeBSD
Vagrant.configure("2") do |c|
c.vm.box = "opscode-freebsd-9.2"
c.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_freebsd-9.2_chef-provisionerless.box"
c.vm.hostname = "portsnap-freebsd-92.vagrantup.com"
c.vm.synced_folder ".", "/vagrant", disabled: true
c.vm.provider :virtualbox do |p|
p.customize ["modifyvm", :id, "--memory", "256"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment