From 509840ccda9bc014b7c91794162cc95be0180c6a Mon Sep 17 00:00:00 2001 From: Toni Noble Date: Thu, 3 Aug 2023 16:22:21 -0400 Subject: [PATCH] add sles15sp5 to install script --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 4b9a51f..3fe8440 100755 --- a/install.sh +++ b/install.sh @@ -210,9 +210,11 @@ download_url () { echo "${CDN_URL}/opensuse-42/pkgs/${name}" ;; "LEAP15" | "SLES15") - if [ "${ver}" -ge 154 ]; then + if [ "${ver}" -ge 155 ]; then + echo "${CDN_URL}/opensuse-155/pkgs/${name}" + elif [ "${ver}" -eq 154 ]; then echo "${CDN_URL}/opensuse-154/pkgs/${name}" - elif [ "${ver}" -ge 153 ]; then + elif [ "${ver}" -eq 153 ]; then echo "${CDN_URL}/opensuse-153/pkgs/${name}" elif [ "${ver}" -eq 152 ]; then echo "${CDN_URL}/opensuse-152/pkgs/${name}"