From f2b385fbf7017d56759040ae6451e4f829ac1c74 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Sun, 4 Aug 2019 19:18:16 +0200 Subject: [PATCH] Initial support for Clear Linux OS --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index 95f2e014..20e50b26 100644 --- a/include/osdetection +++ b/include/osdetection @@ -146,6 +146,11 @@ OS_FULLNAME="Arch Linux" OS_VERSION="Rolling release" ;; + "clear-linux-os") + LINUX_VERSION="Clear Linux OS" + OS_FULLNAME=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + OS_VERSION="Rolling release" + ;; "coreos") LINUX_VERSION="CoreOS" OS_FULLNAME=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')