mirror of https://github.com/CISOfy/lynis.git
[SSH-7408]: Implemented '>' test type.
This commit is contained in:
parent
9a30640327
commit
2e37c17675
|
@ -146,6 +146,17 @@
|
|||
else
|
||||
RESULT="UNKNOWN"
|
||||
fi
|
||||
|
||||
elif [ "${TESTTYPE}" = ">" ]; then
|
||||
if [ "${FOUNDVALUE}" -le "${WEAKVALUE}" ]; then
|
||||
RESULT="WEAK"
|
||||
elif [ "${FOUNDVALUE}" -le "${WEAKVALUE}" -a "${FOUNDVALUE}" -ge "${MEDIUMSCOREDVALUE}" ]; then
|
||||
RESULT="MIDSCORED"
|
||||
elif [ "${FOUNDVALUE}" -ge "${EXPECTEDVALUE}" ]; then
|
||||
RESULT="GOOD"
|
||||
else
|
||||
RESULT="UNKNOWN"
|
||||
fi
|
||||
else
|
||||
RESULT="NONE"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue