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:
Diffstat (limited to 'include/report')
-rw-r--r--include/report12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/report b/include/report
index 1ec93ffa..815dfd03 100644
--- a/include/report
+++ b/include/report
@@ -216,16 +216,18 @@
echo ""
echo " ${SECTION}Scan mode${NORMAL}:"
- if [ ${FORENSICS} -eq 1 ]; then
- echo " Normal [ ] Forensics [V] Pentest [ ]"
+ if [ ${DEVOPS_MODE} -eq 1 ]; then
+ echo " Normal [ ] Forensics [ ] Integration [V] Pentest [ ]"
+ elif [ ${FORENSICS_MODE} -eq 1 ]; then
+ echo " Normal [ ] Forensics [V] Integration [ ] Pentest [ ]"
elif [ ${PENTESTINGMODE} -eq 1 ]; then
if [ ${PRIVILEGED} -eq 0 ]; then
- echo " Normal [ ] Forensics [ ] Pentest [V] (running non-privileged)"
+ echo " Normal [ ] Forensics [ ] Integration [ ] Pentest [V] (running non-privileged)"
else
- echo " Normal [ ] Forensics [ ] Pentest [V] (running privileged)"
+ echo " Normal [ ] Forensics [ ] Integration [ ] Pentest [V] (running privileged)"
fi
else
- echo " Normal [V] Forensics [ ] Pentest [ ]"
+ echo " Normal [V] Forensics [ ] Integration [ ] Pentest [ ]"
fi
echo ""