Merge pull request #8604 from hashicorp/td-vagrantfile-bootstrapping-scripts

scripts/vagrant: Update Vagrant bootstrapping scripts
This commit is contained in:
Wilken Rivera 2020-01-15 12:50:45 -05:00 committed by GitHub
commit 744412d9de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

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

View File

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