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:
parent
e7b6c523ca
commit
10c666a1ae
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue