mirror of https://github.com/CISOfy/lynis.git
Fix FILE-6344 bug (#263)
The result of mount command returns like /proc on /proc type proc (rw,hidepid=2) Witch means the regular expression should be '^/proc' not '^proc' or you can grep nothing. :P
This commit is contained in:
parent
3270c31c04
commit
4368b59a1d
|
@ -308,7 +308,7 @@
|
|||
if [ ${SKIPTEST} -eq 0 ]; then
|
||||
# Proc should be mounted with 'hidepid=2' or 'hidepid=1' at least
|
||||
LogText "Test: check proc mount with incorrect mount options"
|
||||
FIND=$(mount | ${EGREPBINARY} "^proc" | ${EGREPBINARY} -o "hidepid=[0-9]")
|
||||
FIND=$(mount | ${EGREPBINARY} "^/proc" | ${EGREPBINARY} -o "hidepid=[0-9]")
|
||||
if [ "${FIND}" = "hidepid=2" ]; then
|
||||
Display --indent 2 --text "- Testing proc mount" --result "${STATUS_OK}" --color GREEN
|
||||
LogText "Result: proc mount mounted with hidepid=2"
|
||||
|
|
Loading…
Reference in New Issue