From 96c107f63552ca02ba0e9ab7eddba6b08ffb1b1c Mon Sep 17 00:00:00 2001 From: Marco Mascheroni Date: Fri, 19 Jul 2024 18:55:12 +0200 Subject: [PATCH] Add support for CentOS Stram 9 --- creation/web_base/condor_platform_select.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/creation/web_base/condor_platform_select.sh b/creation/web_base/condor_platform_select.sh index a2d4b6e7f..9a1348e54 100755 --- a/creation/web_base/condor_platform_select.sh +++ b/creation/web_base/condor_platform_select.sh @@ -43,6 +43,7 @@ findversion_redhat() { # # should I check that it is SL/RHEL/CentOS ? # no + grep -q 'CentOS Stream release 9' /etc/redhat-release && condor_os='linux-rhel9,rhel9' && return grep -q 'release 9.' /etc/redhat-release && condor_os='linux-rhel9,rhel9' && return grep -q 'CentOS Stream release 8' /etc/redhat-release && condor_os='linux-rhel8,rhel8' && return grep -q 'release 8.' /etc/redhat-release && condor_os='linux-rhel8,rhel8' && return