mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-25 23:05:01 +02:00
parent
c25180a6da
commit
58bff4f54e
@ -6,6 +6,7 @@
|
|||||||
- FILE-6398 - Only perform test if we know if Linux kernel is monolithic/modular
|
- FILE-6398 - Only perform test if we know if Linux kernel is monolithic/modular
|
||||||
- KRNL-5622 - Test if systemctl binary is set
|
- KRNL-5622 - Test if systemctl binary is set
|
||||||
- OS detection for Fedora Linux Asahi Remix
|
- OS detection for Fedora Linux Asahi Remix
|
||||||
|
- OS detection for Buildroot
|
||||||
|
|
||||||
---------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -202,6 +202,12 @@
|
|||||||
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
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 '"')
|
OS_VERSION_FULL=$(grep "^VERSION=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||||
;;
|
;;
|
||||||
|
"buildroot")
|
||||||
|
LINUX_VERSION="Buildroot"
|
||||||
|
OS_NAME="Buildroot"
|
||||||
|
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||||
|
OS_VERSION_FULL=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||||
|
;;
|
||||||
"bunsenlabs")
|
"bunsenlabs")
|
||||||
LINUX_VERSION="BunsenLabs"
|
LINUX_VERSION="BunsenLabs"
|
||||||
OS_NAME="BunsenLabs"
|
OS_NAME="BunsenLabs"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user