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-07-08 22:19:28 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-07-08 22:19:28 +0300
commit054ca21ee34475ae123570b110aedbb7f5221af9 (patch)
treec28e5d6832c541f6e09e5a0fa7402a1c2245a4a6 /include/profiles
parent841509465b03e7a538649cb5fe94c9def7c40075 (diff)
Fix: split directories
Diffstat (limited to 'include/profiles')
-rw-r--r--include/profiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/profiles b/include/profiles
index 71e05b1a..a2d36bb4 100644
--- a/include/profiles
+++ b/include/profiles
@@ -364,7 +364,7 @@
ssl-certificate-paths-to-ignore)
# Retrieve paths to ignore when searching for certificates. Strip special characters, replace possible spaces
- SSL_CERTIFICATE_PATHS_TO_IGNORE=$(echo ${VALUE} | tr -d '[:cntrl:]' | sed 's/ /__space__/g')
+ SSL_CERTIFICATE_PATHS_TO_IGNORE=$(echo ${VALUE} | tr -d '[:cntrl:]' | sed 's/ /__space__/g' | tr ':' ' ')
Debug "SSL paths to ignore: ${SSL_CERTIFICATE_PATHS_TO_IGNORE}"
AddSetting "ssl-certificate-paths-to-ignore" "${SSL_CERTIFICATE_PATHS_TO_IGNORE}" "Paths that should be ignored for SSL certificates"
;;