Skip to content

Instantly share code, notes, and snippets.

@jtuple
Created October 5, 2011 18:45
Show Gist options
  • Save jtuple/1265290 to your computer and use it in GitHub Desktop.
Save jtuple/1265290 to your computer and use it in GitHub Desktop.
Vagrant::Config.run do |config|
config.vm.box = "lucid64"
config.vm.provision :shell, :inline => "rm -f /etc/init.d/sudo /etc/init.d/rsync"
config.vm.provision :chef_solo do |chef|
chef.add_recipe("jdb-basho-expect")
end
config.vm.define :box1 do |box_config|
box_config.vm.network("192.168.60.10")
box_config.vm.host_name = "box1"
end
config.vm.define :box2 do |box_config|
box_config.vm.network("192.168.60.11")
box_config.vm.host_name = "box2"
end
config.vm.define :box3 do |box_config|
box_config.vm.network("192.168.60.12")
box_config.vm.host_name = "box3"
end
config.vm.define :box4 do |box_config|
box_config.vm.network("192.168.60.13")
box_config.vm.host_name = "box4"
end
config.vm.define :box5 do |box_config|
box_config.vm.network("192.168.60.14")
box_config.vm.host_name = "box5"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment