From 445fb200b732cee8507cab79e4d40226aa1b1638 Mon Sep 17 00:00:00 2001 From: Ridvan Gundogmus Date: Thu, 11 Dec 2025 15:11:15 +0100 Subject: [PATCH] Support Oracle Linux in install-from-source.sh Added 'ol' to the list of supported distributions for installation. Oracle Linux /etc/os-release output: $ docker run -it oraclelinux:9 cat /etc/os-release NAME="Oracle Linux Server" VERSION="9.7" ID="ol" ID_LIKE="fedora" VERSION_ID="9.7" PLATFORM_ID="platform:el9" This confirms: ID="ol" ID_LIKE="fedora" Since Oracle Linux is RHEL-compatible and part of the Fedora/RHEL family, handling it under the same case block (fedora | centos | rhel | ol) is appropriate and consistent with existing logic. --- src/linux/Packaging.Linux/install-from-source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linux/Packaging.Linux/install-from-source.sh b/src/linux/Packaging.Linux/install-from-source.sh index 4e640aa07..1a8ede938 100755 --- a/src/linux/Packaging.Linux/install-from-source.sh +++ b/src/linux/Packaging.Linux/install-from-source.sh @@ -189,7 +189,7 @@ case "$distribution" in fi fi ;; - fedora | centos | rhel) + fedora | centos | rhel | ol) $sudo_cmd dnf upgrade -y # Install dotnet/GCM dependencies.