Add domain to Vagrant vm.hostname

This commit is contained in:
Victor LABORIE 2018-10-09 17:40:30 +02:00
parent de92389ff9
commit 2357d28122
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -21,7 +21,7 @@ Vagrant.configure('2') do |config|
templates.each do |template|
config.vm.define "#{template['box_name']}" do |node|
node.vm.hostname = "#{template['box_name']}-#{template['roles_version']}"
node.vm.hostname = "#{template['box_name']}-#{template['roles_version']}.example.com"
node.vm.box = "debian/stretch64"
node.vm.box_version = "#{template['debian_version']}"