From 9fdfc062dd17820114c2721f211f2c0f36bf5494 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 2 Jun 2020 14:09:49 +0200 Subject: [PATCH] Add Gentoo --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index 7ad153d6..7483664b 100644 --- a/include/osdetection +++ b/include/osdetection @@ -183,6 +183,11 @@ OS_REDHAT_OR_CLONE=1 OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') ;; + "gentoo") + LINUX_VERSION="Gentoo" + OS_NAME="Gentoo Linux" + OS_VERSION="Rolling release" + ;; "pureos") LINUX_VERSION="PureOS" OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')