mirror of https://github.com/CISOfy/lynis.git
Merge pull request #134 from rhyven/patch-4
Make AddHP identify non-optimal HP in logfile entries
This commit is contained in:
commit
a629248048
|
@ -76,7 +76,11 @@
|
||||||
HPADD=$1; HPADDMAX=$2
|
HPADD=$1; HPADDMAX=$2
|
||||||
HPPOINTS=`expr ${HPPOINTS} + ${HPADD}`
|
HPPOINTS=`expr ${HPPOINTS} + ${HPADD}`
|
||||||
HPTOTAL=`expr ${HPTOTAL} + ${HPADDMAX}`
|
HPTOTAL=`expr ${HPTOTAL} + ${HPADDMAX}`
|
||||||
LogText "Hardening: assigned ${HPADD} hardening points (max for this item: ${HPADDMAX}), current: ${HPPOINTS}, total: ${HPTOTAL}"
|
if [ ${HPADD} -eq ${HPADDMAX} ]; then
|
||||||
|
LogText "Hardening: assigned ${HPADD} hardening points (max for this item: ${HPADDMAX}), current: ${HPPOINTS}, total: ${HPTOTAL}"
|
||||||
|
else
|
||||||
|
LogText "Hardening: assigned ${HPADD} hardening points (max for this item: ${HPADDMAX}), current: ${HPPOINTS}, total: ${HPTOTAL} [*]"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue