Permalink
Cannot retrieve contributors at this time
Fetching contributors…

Vagrant::Config.run do |config| | |
config.vm.box = "lucid32" | |
config.vm.box_url = "http://files.vagrantup.com/lucid32.box" | |
# Assign this VM to a host only network IP, allowing you to access it | |
# via the IP. | |
# config.vm.network "33.33.33.10" | |
# Forward a port from the guest to the host, which allows for outside | |
# computers to access the VM, whereas host only networking does not. | |
# config.vm.forward_port "http", 80, 8080 | |
config.vm.provision :chef_solo do |chef| | |
chef.cookbooks_path = "chef/cookbooks" | |
chef.add_recipe "hellspawn" | |
chef.log_level = :debug | |
end | |
end | |