mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Missing -eq statement
This commit is contained in:
parent
a0f0e895eb
commit
b36be2f82c
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@
|
|||
report "available_update[]=${I}"
|
||||
FOUND=1
|
||||
done
|
||||
if [ ${FOUND} eq 1 ]; then
|
||||
if [ ${FOUND} -eq 1 ]; then
|
||||
Display --indent 4 --text "- Searching update status (checkupdates)" --result "OUTDATED" --color YELLOW
|
||||
ReportSuggestion "${TEST_NO}" "Perform update of system updates as this system uses rolling updates"
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue