Created
May 15, 2018 09:29
-
-
Save rahulvramesh/cc7162c34a88f904b083dc4cd5779968 to your computer and use it in GitHub Desktop.
go-vagrant-install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This is the entry point for configuring the system. | |
| ##################################################### | |
| #install basic tools | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install git | |
| #get golang 1.9.1 | |
| curl -O https://storage.googleapis.com/golang/go1.9.1.linux-amd64.tar.gz | |
| #unzip the archive | |
| tar -xvf go1.9.1.linux-amd64.tar.gz | |
| #move the go lib to local folder | |
| mv go /usr/local | |
| #delete the source file | |
| rm go1.9.1.linux-amd64.tar.gz | |
| #only full path will work | |
| touch /home/vagrant/.bash_profile | |
| echo "export PATH=$PATH:/usr/local/go/bin" >> /home/vagrant/.bash_profile | |
| echo `export GOPATH=/home/vagrant/workspace:$PATH` >> /home/vagrant/.bash_profile | |
| export GOPATH=/home/vagrant/workspace | |
| mkdir -p "$GOPATH/bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment