Merge pull request #2854 from berendt/vagrantfile_hostname

[Vagrantfile] set the hostname to 'terraform'
This commit is contained in:
Clint 2015-07-29 15:39:19 -05:00
commit 593d83336c
1 changed files with 1 additions and 0 deletions

1
Vagrantfile vendored
View File

@ -42,6 +42,7 @@ SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/ubuntu-12.04" config.vm.box = "chef/ubuntu-12.04"
config.vm.hostname = "terraform"
config.vm.provision "shell", inline: $script, privileged: false config.vm.provision "shell", inline: $script, privileged: false
config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/terraform' config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/terraform'