Update Vagrantfile to use Ubuntu 14.04 LTS

This commit is contained in:
Christoph Blecker 2016-08-15 17:31:59 -07:00
parent ee20058916
commit 880a54e03e
No known key found for this signature in database
GPG Key ID: B34A59A9D39F838B
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -43,7 +43,7 @@ source /etc/profile.d/gopath.sh
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/ubuntu-12.04"
config.vm.box = "bento/ubuntu-14.04"
config.vm.hostname = "terraform"
config.vm.provision "shell", inline: $script, privileged: false