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-06-02 17:34:35 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2020-06-02 17:34:35 +0300
commit05ea9f873d1e62c553242eb531d941c4ad06ae97 (patch)
tree7f95a51a0de01667282463680947245e9157bda0
parentb285623ac2716d3adce9c444e3c9c2d5cf43dfbc (diff)
[FILE-6330] corrected description
-rw-r--r--include/tests_filesystems5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/tests_filesystems b/include/tests_filesystems
index 3ad603c5..fe4ae167 100644
--- a/include/tests_filesystems
+++ b/include/tests_filesystems
@@ -212,10 +212,11 @@
#################################################################################
#
# Test : FILE-6330
- # Description : Query all ZFS mounts from /etc/fstab
+ # Description : Query ZFS mounts
+ # Note : mount -p does not work under Linux
Register --test-no FILE-6330 --os FreeBSD --weight L --network NO --category security --description "Checking ZFS file systems"
if [ ${SKIPTEST} -eq 0 ]; then
- LogText "Test: Query /etc/fstab for available ZFS mount points"
+ LogText "Test: Discover for available ZFS mount points"
FIND=$(${MOUNTBINARY} -p | ${AWKBINARY} '{ if ($3 == "zfs") { print $1":"$2":"$3":"$4":" }}')
if [ -z "${FIND}" ]; then
Display --indent 2 --text "- Querying ZFS mount points (mount -p)" --result "${STATUS_NONE}" --color WHITE