mirror of https://github.com/CISOfy/lynis.git
Added support for Parrot GNU/Linux
This commit is contained in:
parent
0c9ae15d06
commit
fa69256f45
|
@ -270,6 +270,12 @@
|
|||
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
OS_NAME="openSUSE"
|
||||
;;
|
||||
"parrot")
|
||||
LINUX_VERSION="Parrot"
|
||||
OS_NAME="Parrot GNU/Linux"
|
||||
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 '"')
|
||||
;;
|
||||
"pop")
|
||||
LINUX_VERSION="Pop!_OS"
|
||||
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
|
|
Loading…
Reference in New Issue