Blacklist a HostID with only zeros

This commit is contained in:
mboelen 2015-03-03 10:59:46 +01:00
parent 446885d4fd
commit 98c9f2e3bc
1 changed files with 2 additions and 2 deletions

4
lynis
View File

@ -701,8 +701,8 @@
# Get host ID
logtextbreak
GetHostID
# Check if result is not empty (no blank, or hash of blank value, or minus)
if [ ! "${HOSTID}" = "-" -a ! "${HOSTID}" = "" -a ! "${HOSTID}" = "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" ]; then
# Check if result is not empty (no blank, or hash of blank value, or minus, or zeros)
if [ ! "${HOSTID}" = "-" -a ! "${HOSTID}" = "" -a ! "${HOSTID}" = "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" -a ! "${HOSTID}" = "6ef1338f520d075957424741d7ed35ab5966ae97" ]; then
logtext "Info: found valid HostID ${HOSTID}"
report "hostid=${HOSTID}"
else