mirror of https://github.com/CISOfy/lynis.git
Allow swap partitions to have swap in 4th column
This commit is contained in:
parent
bee3d52976
commit
5d730bf9b0
|
@ -210,17 +210,17 @@
|
|||
if [ -f /etc/fstab ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
|
||||
Register --test-no FILE-6336 --preqs-met ${PREQS_MET} --weight L --network NO --description "Checking swap mount options"
|
||||
if [ ${SKIPTEST} -eq 0 ]; then
|
||||
# Swap partitions should be mounted with 'sw'
|
||||
# Swap partitions should be mounted with 'sw' or 'swap'
|
||||
logtext "Test: check swap partitions with incorrect mount options"
|
||||
FIND=`awk '{ if ($3=="swap" && $4 !~ "sw") print $1 }' /etc/fstab`
|
||||
FIND=`awk '{ if ($3=="swap" && ($4!="sw" && $4!="swap")) print $1 }' /etc/fstab`
|
||||
if [ "${FIND}" = "" ]; then
|
||||
Display --indent 2 --text "- Testing swap partitions..." --result OK --color GREEN
|
||||
logtext "Result: all swap partitions have correct options (=sw)"
|
||||
logtext "Result: all swap partitions have correct options (sw or swap)"
|
||||
else
|
||||
Display --indent 2 --text "- Testing swap partitions..." --result WARNING --color RED
|
||||
logtext "Result: possible incorrect mount options used for mounting swap partition (${FIND})"
|
||||
ReportWarning ${TEST_NO} "L" "Possible incorrect mount options used for swap parition (${FIND})"
|
||||
ReportSuggestion ${TEST_NO} "Check your /etc/fstab file. Swap parition usually have 'sw' in the options field (4th)."
|
||||
#ReportWarning ${TEST_NO} "L" "Possible incorrect mount options used for swap parition (${FIND})"
|
||||
ReportSuggestion ${TEST_NO} "Check your /etc/fstab file. Swap partition usually have 'sw' or 'swap' in the options field (4th)."
|
||||
fi
|
||||
fi
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue