Make example vagrant boxes easier to handle.

By setting the hostname of the testnodes in order to make them
distinguishable from each other (currently both nodes have `precise64`
as default hostname).
This commit is contained in:
Soenke Ruempler 2014-04-20 14:04:43 +02:00
parent e7b6c523ca
commit 10c666a1ae
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.provision "shell", inline: $script
config.vm.define "n1" do |n1| config.vm.define "n1" do |n1|
n1.vm.hostname = "n1"
n1.vm.network "private_network", ip: "172.20.20.10" n1.vm.network "private_network", ip: "172.20.20.10"
end end
config.vm.define "n2" do |n2| config.vm.define "n2" do |n2|
n2.vm.hostname = "n2"
n2.vm.network "private_network", ip: "172.20.20.11" n2.vm.network "private_network", ip: "172.20.20.11"
end end
end end