Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.18 #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

1.18 #16

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,7 @@ Changelog:
- 1.17
- Removed hardcoded path for ibdev2
- Removed RPM requirement for RDMA RH8

- 1.18
- Rocky and RHEL up to 8.10
- Preparation for 9.x
5 changes: 3 additions & 2 deletions koet.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from shutil import copyfile
from decimal import Decimal
import argparse
import operator
from math import sqrt, ceil
from functools import reduce
import re
Expand Down Expand Up @@ -39,7 +38,7 @@
DEVNULL = open(os.devnull, 'w')

# This script version, independent from the JSON versions
KOET_VERSION = "1.17"
KOET_VERSION = "1.18"

raw_input = input
PYTHON3 = True
Expand Down Expand Up @@ -417,6 +416,8 @@ def check_os_redhat(os_dictionary):
#print("")
if "8." in redhat_distribution[1]:
redhat8 = True
elif "9." in redhat_distribution[1]:
redhat8 = True
else:
sys.exit(error_message)
except Exception:
Expand Down
17 changes: 12 additions & 5 deletions supported_OS.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"json_version": "1.9",
"json_version": "1.10",
"SUSE Linux Enterprise Server 12 SP2": "NOK",
"SUSE Linux Enterprise Server 12 SP3": "NOK",
"SUSE Linux Enterprise Server 15": "NOK",
"Red Hat Enterprise Linux": "NOK",
"Red Hat Enterprise Linux Server 7.4": "NOK",
"Red Hat Enterprise Linux Server 7.5": "NOK",
"Red Hat Enterprise Linux Server 7.6": "OK",
"Red Hat Enterprise Linux Server 7.7": "OK",
"Red Hat Enterprise Linux Server 7.8": "OK",
"Red Hat Enterprise Linux Server 7.6": "NOK",
"Red Hat Enterprise Linux Server 7.7": "NOK",
"Red Hat Enterprise Linux Server 7.8": "NOK",
"Red Hat Enterprise Linux Server 7.9": "OK",
"Red Hat Enterprise Linux 8.0": "NOK",
"Red Hat Enterprise Linux 8.1": "NOK",
Expand All @@ -19,6 +19,8 @@
"Red Hat Enterprise Linux 8.6": "OK",
"Red Hat Enterprise Linux 8.7": "OK",
"Red Hat Enterprise Linux 8.8": "OK",
"Red Hat Enterprise Linux 8.9": "OK",
"Red Hat Enterprise Linux 8.10": "OK",
"CentOS Linux 7.5.1804": "NOK",
"CentOS Linux 7.6.1810": "NOK",
"CentOS Linux 7.7.1908": "NOK",
Expand All @@ -27,5 +29,10 @@
"CentOS Linux 8.0.1905": "NOK",
"CentOS Linux 8.1.1911": "NOK",
"CentOS Linux 8.2.2004": "NOK",
"CentOS Linux 8.3.2011": "NOK"
"CentOS Linux 8.3.2011": "NOK",
"Rocky Linux release 8.6": "OK",
"Rocky Linux release 8.7": "OK",
"Rocky Linux release 8.8": "OK",
"Rocky Linux release 8.9": "OK",
"Rocky Linux release 8.10": "OK"
}