From 3f8b826585c2dab070d4a795b64cbcb25664d362 Mon Sep 17 00:00:00 2001 From: mboelen Date: Thu, 1 Oct 2015 22:39:01 +0200 Subject: [PATCH] Renaming of variables for clarity --- include/profiles | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/profiles b/include/profiles index 1f128c24..4f4a792a 100644 --- a/include/profiles +++ b/include/profiles @@ -34,9 +34,10 @@ COMPLIANCE_STANDARDS_ENABLED=`echo ${VALUE} | tr ',' ' '` for I in ${COMPLIANCE_STANDARDS_ENABLED}; do case $I in - hipaa) COMPLIANCE_HIPAA=1 ; Debug "Compliance scanning for HIPAA is enabled" ;; - iso27001) COMPLIANCE_ISO27001=1 ; Debug "Compliance scanning for ISO27001 is enabled" ;; - pci-dss) COMPLIANCE_PCI_DSS=1 ; Debug "Compliance scanning for PCI-DSS is enabled" ;; + cis) COMPLIANCE_ENABLE_CIS=1 ; Debug "Compliance scanning for CIS Benchmarks is enabled" ;; + hipaa) COMPLIANCE_ENABLE_HIPAA=1 ; Debug "Compliance scanning for HIPAA is enabled" ;; + iso27001) COMPLIANCE_ENABLE_ISO27001=1 ; Debug "Compliance scanning for ISO27001 is enabled" ;; + pci-dss) COMPLIANCE_ENABLE_PCI_DSS=1 ; Debug "Compliance scanning for PCI-DSS is enabled" ;; *) logtext "Result: Unknown compliance standard configured" ;; esac done