Changed go version for ansible scripts

This commit is contained in:
andronache98
2021-12-15 09:34:19 +02:00
committed by Dan Christian Bogos
parent cb84fd2bb0
commit dc6f769344

View File

@@ -123,14 +123,14 @@ Install GO Lang
First we have to setup the GO Lang to our OS. Feel free to download
the latest GO binary release from https://golang.org/dl/
In this Tutorial we are going to install Go 1.16
In this Tutorial we are going to install Go 1.17
::
sudo rm -rf /usr/local/go
cd /tmp
wget https://golang.org/dl/go1.16.linux-amd64.tar.gz
sudo tar -xvf go1.16.linux-amd64.tar.gz -C /usr/local/
wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz
sudo tar -xvf go1.17.5.linux-amd64.tar.gz -C /usr/local/
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin