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>2019-08-21 14:59:28 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-08-21 14:59:28 +0300
commit65f1a5e811fa4b67ed5d591e48a88a3f9532c5b2 (patch)
tree30a993edb997d2a258422af8ab64efcaab1213b3 /include/report
parentd395e1a2da77d3e44a8894039414f10511ef6f9c (diff)
Added initial support for DevOps mode to improve continuous integration
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 ""