system/scripts/sh/deploy_go.sh
Georg Pfuetzenreuter c85c094f27
Go and Ergo Deployment Scripts
Signed-off-by: Georg Pfuetzenreuter <georg@lysergic.dev>
2021-07-23 17:34:09 +02:00

23 lines
524 B
Bash
Executable File

#!/bin/sh
DISTRIB=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
echo $DISTRIB
if [[ ${DISTRIB} = "openSUSE Leap" ]]
echo
then
read -p "Deploy Go on this system? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
if [ ! -f /etc/zypp/repos.d/go.repo ]
then
REPO="https://download.opensuse.org/repositories/devel:/languages:/go/openSUSE_Leap_15.3/devel:languages:go.repo"
zypper ar --gpgcheck-allow-unsigned-repo $REPO
fi
zypper ref
zypper in -y go
echo OK
fi
else
echo "This is currently only compatible with SUSE Leap nodes."
fi