From fcc2406daef45d174c88bdc2eec30e11ec8d28ad Mon Sep 17 00:00:00 2001 From: josh08287 Date: Fri, 14 Mar 2025 10:08:42 -0400 Subject: [PATCH] added ol to the list of distros that use dnf Oracle Linux's distro ID in /etc/os-release is "ol". Added this ID to the list of RHEL compatible distributions in the distribution case. --- 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 8cf60251c..52b739b9e 100755 --- a/src/linux/Packaging.Linux/install-from-source.sh +++ b/src/linux/Packaging.Linux/install-from-source.sh @@ -181,7 +181,7 @@ case "$distribution" in fi fi ;; - fedora | centos | rhel) + fedora | centos | rhel | ol) $sudo_cmd dnf upgrade -y # Install dotnet/GCM dependencies.