Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2021-04-01 14:31:59 +0300
committerGitHub <noreply@github.com>2021-04-01 14:31:59 +0300
commita59aa785d17a30e879c3d5207e3916400bb16cfa (patch)
tree5e80f47e57be5c700185b4b13999b21456cf2da7
parent4de41543e66b42babe03c230e1ec0fa381c85ba4 (diff)
parent543c41675bfbd8ac6da4b70ab3719203e26d26f0 (diff)
Merge pull request #1123 from sbathe/master
1122: Add OS detection block for Garuda Linux
-rw-r--r--include/osdetection6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/osdetection b/include/osdetection
index 17bb28af..fe83c10b 100644
--- a/include/osdetection
+++ b/include/osdetection
@@ -214,6 +214,12 @@
OS_NAME="Flatcar Linux"
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
;;
+ "garuda")
+ LINUX_VERSION="Garuda"
+ OS_FULLNAME="Garuda Linux"
+ OS_NAME="Garuda"
+ OS_VERSION="Rolling release"
+ ;;
"gentoo")
LINUX_VERSION="Gentoo"
OS_NAME="Gentoo Linux"