Merge pull request #66 from s0enke/vagrant_example_name_nodes

demo: Make example vagrant boxes easier to handle.
This commit is contained in:
Mitchell Hashimoto 2014-04-20 07:48:38 -07:00
commit 0513c3c0a1
1 changed files with 2 additions and 0 deletions

View File

@ -25,10 +25,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell", inline: $script
config.vm.define "n1" do |n1|
n1.vm.hostname = "n1"
n1.vm.network "private_network", ip: "172.20.20.10"
end
config.vm.define "n2" do |n2|
n2.vm.hostname = "n2"
n2.vm.network "private_network", ip: "172.20.20.11"
end
end