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:
authormboelen <michael@cisofy.com>2016-04-20 13:08:34 +0300
committermboelen <michael@cisofy.com>2016-04-20 13:08:34 +0300
commit560acfadf67e0c691c285c3ccb5add6dfe241deb (patch)
tree3bbb371b48d70ba235a4cc59e129258ef510eace /include/functions
parent5757837e28d5c7484b5dfa571354d75885cbe765 (diff)
Log what particular atomic test has been skipped and why
Diffstat (limited to 'include/functions')
-rw-r--r--include/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions b/include/functions
index 731aef5f..ce8b75fb 100644
--- a/include/functions
+++ b/include/functions
@@ -2103,7 +2103,7 @@
RETVAL=1
# Check if this test is on the list to skip
for I in ${SKIP_TESTS}; do
- if [ "${I}" = "$1" ]; then RETVAL=0; LogText "Atomic test skipped by configuration (skip-test)"; fi
+ if [ "${I}" = "$1" ]; then RETVAL=0; LogText "Atomic test ($1) skipped by configuration (skip-test)"; fi
done
fi
return $RETVAL