From 2bccdbddfd2f692d2a96451d0192bdf703bf850a Mon Sep 17 00:00:00 2001 From: Justin Pasher Date: Fri, 21 Feb 2025 13:59:43 -0600 Subject: [PATCH] Add detection for openSUSE Slowroll --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index 7a2e4bf1..b4270695 100644 --- a/include/osdetection +++ b/include/osdetection @@ -397,6 +397,11 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_NAME="openSUSE" ;; + "opensuse-slowroll") + LINUX_VERSION="openSUSE Slowroll" + OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + OS_NAME="openSUSE" + ;; "opensuse-leap") LINUX_VERSION="openSUSE Leap" OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')