prepare install NEO script for rhel8.7 and ubi8.7 (#14408)

* enable install scripts for rhel8.7

* fix syntax error
This commit is contained in:
Trawinski, Dariusz 2022-12-05 15:42:28 +01:00 committed by GitHub
parent b1be628861
commit d5a4d169d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -382,10 +382,10 @@ add_user_to_video_group()
_check_distro_version() _check_distro_version()
{ {
if [[ $DISTRO == redhat ]]; then if [[ $DISTRO == redhat ]]; then
RHEL_MINOR_VERSION_SUPPORTED="[3-6]" RHEL_MINOR_VERSION_SUPPORTED="[3-7]"
RHEL_VERSION=$(grep -m1 'VERSION_ID' /etc/os-release | grep -Eo "8.${RHEL_MINOR_VERSION_SUPPORTED}") RHEL_VERSION=$(grep -m1 'VERSION_ID' /etc/os-release | grep -Eo "8.${RHEL_MINOR_VERSION_SUPPORTED}")
if [[ $? -ne 0 ]]; then if [[ $? -ne 0 ]]; then
echo "Warning: This runtime can be installed only on RHEL 8.3 up to RHEL 8.6" echo "Warning: This runtime can be installed only on RHEL 8.3 up to RHEL 8.7"
echo "More info https://dgpu-docs.intel.com/releases/releases-20211130.html" >&2 echo "More info https://dgpu-docs.intel.com/releases/releases-20211130.html" >&2
echo "Installation of Intel® Graphics Compute Runtime for oneAPI Level Zero and OpenCL™ Driver interrupted" echo "Installation of Intel® Graphics Compute Runtime for oneAPI Level Zero and OpenCL™ Driver interrupted"
exit $EXIT_FAILURE exit $EXIT_FAILURE