Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2020-03-24 15:34:05 +0300
committerGitHub <noreply@github.com>2020-03-24 15:34:05 +0300
commit3c8e3b0adb9bae3c3464d9e5f39bea7af6967ad7 (patch)
treead4fcbd1f5386ab1225d660e3c68fb576d898a4a /include/tests_filesystems
parent5e821687af6025980d9a94f5520b8bf849bcd0dc (diff)
parent0da82a18cbf05bd990016e7f0ab94694a54e5a69 (diff)
Merge pull request #862 from topimiettinen/blacklist-fs
FS module tests: check if modules are blacklisted
Diffstat (limited to 'include/tests_filesystems')
-rw-r--r--include/tests_filesystems6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/tests_filesystems b/include/tests_filesystems
index 6a70c5fb..70efd2cc 100644
--- a/include/tests_filesystems
+++ b/include/tests_filesystems
@@ -799,6 +799,12 @@
AddHP 3 3
if IsDebug; then Display --indent 6 --text "- Module ${FS} not present in the kernel" --result OK --color GREEN; fi
fi
+ FIND1=$(${EGREPBINARY} "blacklist ${FS}" ${ROOTDIR}etc/modprobe.d/* | ${GREPBINARY} -v "#")
+ FIND2=$(${EGREPBINARY} "install ${FS} /bin/true" ${ROOTDIR}etc/modprobe.d/* | ${GREPBINARY} -v "#")
+ if [ -n "${FIND1}" ] || [ -n "${FIND2}" ]; then
+ Display --indent 4 --text "- Module $FS is blacklisted" --result "OK" --color GREEN
+ LogText "Result: module ${FS} is blacklisted"
+ fi
done
if [ ${FOUND} -eq 1 ]; then
Display --indent 4 --text "- Discovered kernel modules: ${AVAILABLE_MODPROBE_FS}"