File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 19
19
### Changed
20
20
- Correction of software EOL database and inclusion of AIX entries
21
21
- Support sysctl value perf_event_paranoid -> 2|3
22
- - Update of Turkish translation
23
- - Update of Portuguese translation
22
+ - Update of translations: German, Portuguest, Turkish
24
23
- Grammar and spell improvements
25
24
- Improved package detection on Alpine Linux
26
25
- Slackware support to check installed packges (functionPackageIsInstalled())
32
31
- CONT-8104 - Checking for errors, not only warning in docker info output
33
32
- DBS-1826 - PostgreSQL detection improved for AlmaLinux, Rocky Linux, and FreeBSD
34
33
- FILE-6344 - Test kernel version (major/minor)
34
+ - INSE-8000 - Added inetd package and service name used in ubuntu 24.04
35
35
- KRNL-5622 - Use systemctl get-default instead of following link
36
36
- KRNL-5820 - Accept ulimit with -H parameter also
37
37
- LOGG-2144 - Check for wazuh-agent presence on Linux systems
43
43
- PKGS-7303 - Added version numbers to brew packages
44
44
- PKGS-7370 - Cron job check for debsums improved
45
45
- PKGS-7392 - Improved filtering of apt-check output (Ubuntu 24.04 may give an error)
46
+ - PKGS-7410 - Added kernel name for Hardkernel odroid XU4
46
47
47
48
---------------------------------------------------------------------------------
48
49
Original file line number Diff line number Diff line change @@ -106,4 +106,4 @@ STATUS_WEAK="SCHWACH"
106
106
STATUS_YES="JA"
107
107
TEXT_UPDATE_AVAILABLE="Aktualisierung verfügbar"
108
108
TEXT_YOU_CAN_HELP_LOGFILE="Sie können durch Übermittlung Ihrer Logdatei helfen"
109
- # SECTION_KERBEROS="Kerberos"
109
+ SECTION_KERBEROS="Kerberos"
Original file line number Diff line number Diff line change 877
877
fi
878
878
FIND=$( ${LSBINARY} ${ROOTDIR} etc/modprobe.d/* 2> /dev/null)
879
879
if [ -n " ${FIND} " ]; then
880
- FIND1=$( ${GREPBINARY} -E " ^blacklist \ +${FS} $" ${ROOTDIR} etc/modprobe.d/* | ${GREPBINARY} -v " #" )
881
- FIND2=$( ${GREPBINARY} -E " ^install \ +${FS} \ +/bin/true$" ${ROOTDIR} etc/modprobe.d/* | ${GREPBINARY} -v " #" )
880
+ FIND1=$( ${GREPBINARY} -E " ^blacklist[[:space:]] +${FS} $" ${ROOTDIR} etc/modprobe.d/* | ${GREPBINARY} -v " #" )
881
+ FIND2=$( ${GREPBINARY} -E " ^install[[:space:]] +${FS} [[:space:]] +/bin/( true|false) $" ${ROOTDIR} etc/modprobe.d/* | ${GREPBINARY} -v " #" )
882
882
if [ -n " ${FIND1} " ] || [ -n " ${FIND2} " ]; then
883
883
Display --indent 4 --text " - Module $FS is blacklisted" --result " OK" --color GREEN
884
884
LogText " Result: module ${FS} is blacklisted"
Original file line number Diff line number Diff line change 41
41
if [ ${SKIPTEST} -eq 0 ]; then
42
42
# Check for installed inetd daemon
43
43
LogText " Test: Checking if inetd is installed"
44
- if PackageIsInstalled " inetd" ; then
44
+ if PackageIsInstalled " inetd" || PackageIsInstalled " inetutils-inetd " ; then
45
45
INETD_PACKAGE_INSTALLED=1
46
46
LogText " Result: inetd is installed"
47
47
Display --indent 2 --text " - Installed inetd package" --result " ${STATUS_FOUND} " --color YELLOW
61
61
if [ ${SKIPTEST} -eq 0 ]; then
62
62
# Check running processes
63
63
LogText " Test: Searching for active inet daemon"
64
- if IsRunning " inetd" ; then
64
+ if IsRunning " inetd" || IsRunning " inetutils-inetd " ; then
65
65
LogText " Result: inetd is running"
66
66
Display --indent 4 --text " - inetd status" --result " ${STATUS_ACTIVE} " --color GREEN
67
67
INETD_ACTIVE=1
Original file line number Diff line number Diff line change 750
750
UNCOMMON_PROTOCOL_DISABLED=0
751
751
# First check modprobe.conf
752
752
if [ -f ${ROOTDIR} etc/modprobe.conf ]; then
753
- DATA=$( ${GREPBINARY} " ^install \ +${P} \ +/bin/(true|false)$" ${ROOTDIR} etc/modprobe.conf)
753
+ DATA=$( ${GREPBINARY} -E " ^install[[:space:]] +${P} [[:space:]] +/bin/(true|false)$" ${ROOTDIR} etc/modprobe.conf)
754
754
if [ -n " ${DATA} " ]; then
755
755
LogText " Result: found ${P} module disabled via modprobe.conf"
756
756
UNCOMMON_PROTOCOL_DISABLED=1
759
759
# Then additional modprobe configuration files
760
760
if [ -d ${ROOTDIR} etc/modprobe.d ]; then
761
761
# Return file names (-l) and suppress errors (-s)
762
- DATA=$( ${GREPBINARY} -l -s " ^install \ +${P} \ +/bin/(true|false)$" ${ROOTDIR} etc/modprobe.d/* )
762
+ DATA=$( ${GREPBINARY} -l -s -E " ^install[[:space:]] +${P} [[:space:]] +/bin/(true|false)$" ${ROOTDIR} etc/modprobe.d/* )
763
763
if [ -n " ${DATA} " ]; then
764
764
UNCOMMON_PROTOCOL_DISABLED=1
765
765
for F in ${DATA} ; do
Original file line number Diff line number Diff line change @@ -1378,7 +1378,7 @@ EOF
1378
1378
1379
1379
if [ " ${DPKGBINARY} " ]; then
1380
1380
TESTED=1
1381
- KERNEL_PKG_NAMES=" linux-image-[0-9]|raspberrypi-kernel|pve-kernel-[0-9]"
1381
+ KERNEL_PKG_NAMES=" linux-image-[0-9]|raspberrypi-kernel|pve-kernel-[0-9]|linux-odroid-5422 "
1382
1382
KERNELS=$( ${DPKGBINARY} -l 2> /dev/null | ${GREPBINARY} -E " ${KERNEL_PKG_NAMES} " | ${WCBINARY} -l)
1383
1383
if [ ${KERNELS} -eq 0 ]; then
1384
1384
LogText " Result: found no kernels from dpkg -l output, which is unexpected"
You can’t perform that action at this time.
0 commit comments