mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Merge 285bc2c989 into 52ed89ce35
This commit is contained in:
commit
5d4333b346
2 changed files with 17 additions and 0 deletions
|
|
@ -297,6 +297,17 @@ os:OpenBSD 7.4:2024-10-08:1728338400:
|
|||
os:OpenBSD 7.5:2025-05-31:1748642400:
|
||||
os:OpenBSD 7.6:2025-10-31:1761865200:
|
||||
#
|
||||
# OpenWrt - https://openwrt.org/docs/guide-developer/security#support_status
|
||||
#
|
||||
os:OpenWrt 15.05:2016-03-31:1459375200:
|
||||
os:OpenWrt 17.01:2018-09-30:1538258400:
|
||||
os:OpenWrt 18.06:2020-12-31:1609369200:
|
||||
os:OpenWrt 19.07:2022-04-30:1651269600:
|
||||
os:OpenWrt 21.02:2023-05-31:1685484000:
|
||||
os:OpenWrt 22.03:2024-07-31:1722376800:
|
||||
os:OpenWrt 23.05:2025-07-31:1753912800:
|
||||
os:OpenWrt 24.10:2026-02-28:1772233200:
|
||||
#
|
||||
# Red Hat Enterprise Linux - https://access.redhat.com/labs/plcc/
|
||||
#
|
||||
os:Red Hat Enterprise Linux Server release 6:2020-11-30:1606690800:
|
||||
|
|
|
|||
|
|
@ -434,6 +434,12 @@
|
|||
OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
OS_NAME="openSUSE"
|
||||
;;
|
||||
"openwrt")
|
||||
LINUX_VERSION='OpenWrt'
|
||||
HARDWARE=$(grep '^OPENWRT_BOARD=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
OS_NAME=$(grep '^NAME=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
OS_VERSION=$(grep '^VERSION=' /etc/os-release | awk -F= '{print $2}' | tr -d '"')
|
||||
;;
|
||||
"osmc")
|
||||
LINUX_VERSION="OSMC"
|
||||
LINUX_VERSION_LIKE="Debian"
|
||||
|
|
|
|||
Loading…
Reference in a new issue