From 2d02fda50a5a627aeb452225af88fa48aca8ab41 Mon Sep 17 00:00:00 2001
From: Georg Pfuetzenreuter
Date: Fri, 23 Jul 2021 18:26:54 +0200
Subject: Ergo deployment OS and existing installation check.

Signed-off-by: Georg Pfuetzenreuter <georg@lysergic.dev>
---
 scripts/sh/deploy_ergo.sh | 13 +++++++++++++
 scripts/sh/remove_ergo.sh |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/scripts/sh/deploy_ergo.sh b/scripts/sh/deploy_ergo.sh
index 29eb9e0..b7486a4 100755
--- a/scripts/sh/deploy_ergo.sh
+++ b/scripts/sh/deploy_ergo.sh
@@ -1,4 +1,11 @@
 #!/bin/sh
+DISTRIB=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
+echo "Detected $DISTRIB"
+if [[ ${DISTRIB} = "openSUSE Leap" ]]
+echo
+then
+if [ ! -d /opt/ergo ]
+then
 GOVER=`go version | { read _ _ v _; echo ${v#go}; }`
 echo "Detected Go $GOVER"
 GOVER_REQ="1.16.0"
@@ -53,3 +60,9 @@ fi
 else
 echo "This is currently only compatible with Go 1.16.6 or higher. Consider deploy_go.sh."
 fi
+else
+echo "Existing Ergo installation or leftovers detected. Consider remove_ergo.sh."
+fi
+else
+echo "This is currently only compatible with SUSE Leap nodes."
+fi
diff --git a/scripts/sh/remove_ergo.sh b/scripts/sh/remove_ergo.sh
index c9af4de..0634946 100755
--- a/scripts/sh/remove_ergo.sh
+++ b/scripts/sh/remove_ergo.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-if [ ! /opt/ergo ]
+if [ ! -d /opt/ergo ]
 echo
 then
 read -p "Remove Ergo? This will kill running Ergo services and cause data loss. " -n 1 -r
-- 
cgit v1.2.3