From 183af1d334ee6111f08d1e9d2539d959ef871c2f Mon Sep 17 00:00:00 2001 From: Simon Biewald Date: Thu, 12 Nov 2020 22:12:26 +0100 Subject: [PATCH] Add IPFire to osdetection Fixes cisofy/lynis#1040. Signed-off-by: Simon Biewald --- include/osdetection | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osdetection b/include/osdetection index b52ab188..925beec2 100644 --- a/include/osdetection +++ b/include/osdetection @@ -207,6 +207,11 @@ OS_NAME="Gentoo Linux" OS_VERSION="Rolling release" ;; + "ipfire") + LINUX_VERSION="IPFire" + OS_NAME="IPFire" + OS_VERSION=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "kali") LINUX_VERSION="Kali" OS_NAME="Kali Linux"