Force setting hostname with vagrant

pull/14/head
Emilien Mantel 2016-02-15 09:06:05 +01:00
parent b266e775a8
commit c8870974ee
1 changed files with 1 additions and 0 deletions

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]