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/profiles')
-rw-r--r--include/profiles10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/profiles b/include/profiles
index 4b7741fd..2a468b17 100644
--- a/include/profiles
+++ b/include/profiles
@@ -45,6 +45,16 @@
case ${OPTION} in
+ # Is Lynis Enterprise allowed to purge this system when it is becomes outdated?
+ allow-auto-purge)
+ FIND=$(echo "${VALUE}" | egrep "^(1|true|yes)$")
+ if [ ! -z "${FIND}" ]; then
+ Report "allow-auto-purge=1"
+ else
+ Report "allow-auto-purge=0"
+ fi
+ ;;
+
# Define which compliance standards are enabled
# For this to work, the Enterprise plugins are needed
compliance_standards | check-compliance)