diff --git a/include/osdetection b/include/osdetection index 7a2e4bf1..d0b27b3a 100644 --- a/include/osdetection +++ b/include/osdetection @@ -397,6 +397,12 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_NAME="openSUSE" ;; + "opensuse-slowroll") + LINUX_VERSION="openSUSE Tumbleweed-Slowroll" + # It's rolling release but has a snapshot version (the date of the snapshot) + 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 '"')