From 54f9281040c8cc82aa7f8e961dcb6d04af14dfe2 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Thu, 20 May 2021 08:28:54 +0200 Subject: Added BunsenLabs detection --- include/osdetection | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/osdetection b/include/osdetection index 3b628c52..a7112d4b 100644 --- a/include/osdetection +++ b/include/osdetection @@ -173,6 +173,12 @@ OS_FULLNAME="Arch Linux 32" OS_VERSION="Rolling release" ;; + "bunsenlabs") + LINUX_VERSION="BunsenLabs" + OS_NAME="BunsenLabs" + OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "centos") LINUX_VERSION="CentOS" OS_NAME="CentOS Linux" @@ -201,7 +207,7 @@ OS_NAME="Debian" OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') - ;; + ;; "devuan") LINUX_VERSION="Devuan" OS_NAME="Devuan" -- cgit v1.2.3