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-09-24 16:51:05 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-09-24 16:51:05 +0300
commit870ac295c6155344431b0e8056ab417ca2835755 (patch)
treef31dcc589b8866132d3627a2cbf02148fa54c7f8 /include/profiles
parent98d9096739acfebb55700317b7869dbb69f25dba (diff)
Show possible solution with findings
Diffstat (limited to 'include/profiles')
-rw-r--r--include/profiles5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/profiles b/include/profiles
index f95db59e..7988995e 100644
--- a/include/profiles
+++ b/include/profiles
@@ -233,8 +233,9 @@
# Show more details in report
show-report-solution)
- FIND=$(echo "${VALUE}" | egrep "^(1|true|yes)$") && SHOW_REPORT_SOLUTION=1
- if [ ! -z "${FIND}" ]; then SETTING_SHOW_REPORT_SOLUTION=1; fi
+ SETTING_SHOW_REPORT_SOLUTION=${SHOW_REPORT_SOLUTION}
+ FIND=$(echo "${VALUE}" | egrep "^(0|false|no)$") && SHOW_REPORT_SOLUTION=0
+ if [ ! -z "${FIND}" ]; then SETTING_SHOW_REPORT_SOLUTION=0; fi
Debug "Show report details (solution) set to ${SETTING_SHOW_REPORT_SOLUTION}"
;;