Merge pull request #1123 from sbathe/master

1122: Add OS detection block for Garuda Linux
This commit is contained in:
Michael Boelen 2021-04-01 13:31:59 +02:00 committed by GitHub
commit a59aa785d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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"