Force setting hostname with vagrant

This commit is contained in:
Emilien Mantel
2016-02-15 09:06:05 +01:00
parent b266e775a8
commit c8870974ee

1
Vagrantfile vendored
View File

@@ -29,6 +29,7 @@ Vagrant.configure("2") do |config|
vms.each do |vm|
config.vm.define vm[0] do |m|
m.vm.hostname = vm[0]
m.vm.box = vm[1]
m.vm.network "private_network", ip: vm[2]