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>2016-08-14 21:43:05 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-08-14 21:43:05 +0300
commitbf7b8ab44ed0979650f3cc717e7cd41979f8c354 (patch)
treeb24000dbc58a0bf1c65e696d38a5186175d6aaf9 /include/tests_databases
parentf0a957642b2544767d29affd8646885dd29faa22 (diff)
Changed text for Redis test
Diffstat (limited to 'include/tests_databases')
-rw-r--r--include/tests_databases6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tests_databases b/include/tests_databases
index 9b3019c0..e48a6066 100644
--- a/include/tests_databases
+++ b/include/tests_databases
@@ -197,13 +197,13 @@
if [ ! -z "${FILES}" ]; then
for CONFFILE in ${FILES}; do
if FileIsReadable ${CONFFILE}; then
- LogText "Action: checking if ${CONFFILE} this is a Sentinel configuration file"
+ LogText "Action: checking if ${CONFFILE} is a Sentinel configuration file"
# Exclude Sentinel configuration file
FIND=$(grep "^sentinel " ${CONFFILE})
if [ ! -z "${FIND}" ]; then
- LogText "Result: file is a Sentinel configuration file, skipping"
+ LogText "Result: file is a Sentinel configuration file, skipping it"
else
- LogText "Result: not a Sentinel configuration file. Now scanning if it is a Redis configuration file"
+ LogText "Result: file is NOT a Sentinel configuration file. Now scanning if it is a Redis configuration file"
FIND=$(grep "Redis" ${CONFFILE})
if [ ! -z "${FIND}" ]; then
REDIS_CONFIGURATION_FILES="${REDIS_CONFIGURATION_FILES} ${CONFFILE}"