scripts/vagrant: Update Vagrant bootstrapping scripts

This commit is contained in:
nywilken 2019-11-15 12:25:13 -05:00
parent 0e177915f8
commit 8a36ddd69d
2 changed files with 4 additions and 5 deletions

View File

@ -1,10 +1,9 @@
#!/usr/bin/env bash
function install_go() {
local go_version=1.11.1
local go_version=1.13
local download=
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
download="https://dl.google.com/go/go${go_version}.linux-amd64.tar.gz"
if [ -d /usr/local/go ] ; then
return
@ -18,7 +17,7 @@ function install_go() {
}
install_go
# Ensure that the GOPATH tree is owned by vagrant:vagrant
mkdir -p /opt/gopath
chown -R vagrant:vagrant /opt/gopath

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
cd /opt/gopath/src/github.com/hashicorp/packer && make deps
cd /opt/gopath/src/github.com/hashicorp/packer && make dev