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-25 17:00:10 +0300
committermboelen <michael@cisofy.com>2016-04-25 17:00:10 +0300
commit4dcb9eccff5a77c1320083afb4da638fbb3caa27 (patch)
tree63aca07b79bdfc0a4e40ad3be134b7b762fbc44b /include/report
parente5790dc8c6c2349a846c4d50b019ab31735ff93b (diff)
Allow skipping of plugins with --skip-plugins or skip-plugins
Diffstat (limited to 'include/report')
-rw-r--r--include/report2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/report b/include/report
index f007e389..8124b8ad 100644
--- a/include/report
+++ b/include/report
@@ -167,7 +167,7 @@
echo ""
echo " ${CYAN}Hardening index${NORMAL} : ${WHITE}${HPINDEX}${NORMAL} ${HPGRAPH}"
echo " ${CYAN}Tests performed${NORMAL} : ${WHITE}${CTESTS_PERFORMED}${NORMAL}"
- echo " ${CYAN}Plugins enabled${NORMAL} : ${WHITE}${N_PLUGIN_ENABLED}${NORMAL}"
+ if [ ${RUN_PLUGINS} -eq 1 ]; then echo " ${CYAN}Plugins enabled${NORMAL} : ${WHITE}${N_PLUGIN_ENABLED}${NORMAL}"; fi
echo ""
echo " ${WHITE}Components${NORMAL}:"
if [ ${FIREWALL_ACTIVE} -eq 1 ]; then FIREWALL="${GREEN}V"; else FIREWALL="${RED}X"; fi