aboutsummaryrefslogtreecommitdiffstats
path: root/containers/vagrant/provisioners/shell/centos.sh
diff options
context:
space:
mode:
Diffstat (limited to 'containers/vagrant/provisioners/shell/centos.sh')
-rwxr-xr-xcontainers/vagrant/provisioners/shell/centos.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/containers/vagrant/provisioners/shell/centos.sh b/containers/vagrant/provisioners/shell/centos.sh
new file mode 100755
index 000000000..744da4bfd
--- /dev/null
+++ b/containers/vagrant/provisioners/shell/centos.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+sudo yum install -y git wget
+sudo yum update -y
+
+wget --continue https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
+sudo tar -C /usr/local -xzf go1.8.1.linux-amd64.tar.gz
+
+GETH_PATH="~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
+
+echo "export PATH=$PATH:/usr/local/go/bin:$GETH_PATH" >> ~vagrant/.bashrc