mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
[SSH-7408]: Implemented '>' test type.
This commit is contained in:
parent
9a30640327
commit
2e37c17675
1 changed files with 11 additions and 0 deletions
|
|
@ -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 a new issue