From 6418a4c9754a0144207fc4a7ea1fc9405c1fe424 Mon Sep 17 00:00:00 2001 From: Sophia Atkinson Date: Fri, 20 Jan 2023 16:01:40 -0800 Subject: [PATCH] updated Gitea version. --- scripts/giteainstall.sh | 9 +++++++-- scripts/giteaupdate.sh | 8 +++++++- scripts/gitlabinstall.sh | 4 ++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/scripts/giteainstall.sh b/scripts/giteainstall.sh index 6de4920..80487e7 100644 --- a/scripts/giteainstall.sh +++ b/scripts/giteainstall.sh @@ -16,7 +16,12 @@ do ;; esac done -GITEA_VER="1.18.1" +ping -c1 "github.com" &>"/dev/null" + +if [[ "${?}" -ne 0 ]]; then + echo "I am unable to access Github.com, that is needed to continue this Install." +elif [[ "${#args[@]}" -eq 0 ]]; then +GITEA_VER="1.18.2" sudo systemctl stop gitea sudo apt-get install git -y sudo wget -O /usr/local/bin/gitea https://github.com/go-gitea/gitea/releases/download/v"$GITEA_VER"/gitea-"$GITEA_VER"-linux-amd64 @@ -33,10 +38,10 @@ sudo systemctl daemon-reload sudo systemctl enable --now gitea sudo systemctl start gitea sudo ufw allow 3000 - echo -e "==================================================================" publicipaddress=$(curl -sS --connect-timeout 10 -m 60 https://ipv4.icanhazip.com/ || curl -sS --connect-timeout 10 -m 60 https://api.ipify.org ) intenalip=$(ip addr | grep -E -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -E -v "^127\.|^255\.|^0\." | head -n 1) echo "Gitea Should be available at http://${intenalip}:3000" echo "Or If you are using a VPS at http://${publicipaddress}:3000" echo -e "==================================================================" +fi \ No newline at end of file diff --git a/scripts/giteaupdate.sh b/scripts/giteaupdate.sh index 27c6adc..dc36f6e 100644 --- a/scripts/giteaupdate.sh +++ b/scripts/giteaupdate.sh @@ -15,7 +15,12 @@ do ;; esac done -GITEA_VER="1.18.1" +ping -c1 "github.com" &>"/dev/null" + +if [[ "${?}" -ne 0 ]]; then +echo "I am unable to access Github.com, that is needed to continue this Install." +elif [[ "${#args[@]}" -eq 0 ]]; then +GITEA_VER="1.18.2" sudo systemctl stop gitea sudo wget -O /usr/local/bin/gitea https://github.com/go-gitea/gitea/releases/download/v"$GITEA_VER"/gitea-"$GITEA_VER"-linux-amd64 sudo chmod +x /usr/local/bin/gitea @@ -24,5 +29,6 @@ sudo chmod -R 750 /var/lib/gitea sudo chown -R root:git /etc/gitea sudo chmod -R 770 /etc/gitea sudo systemctl start gitea +fi echo "Gitea has been updated!" \ No newline at end of file diff --git a/scripts/gitlabinstall.sh b/scripts/gitlabinstall.sh index a96fe98..d64a3d5 100644 --- a/scripts/gitlabinstall.sh +++ b/scripts/gitlabinstall.sh @@ -21,8 +21,8 @@ sudo apt install tzdata curl ca-certificates openssh-server git -y gpg_key_url="https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey" curl -fsSL $gpg_key_url| sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/gitlab.gpg sudo tee /etc/apt/sources.list.d/gitlab_gitlab-ce.list<