From 16146aabc0023a10e3f83c8d27860323080297c3 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Mon, 8 Jul 2019 14:27:40 +0200 Subject: Added option: ssl-certificate-paths-to-ignore --- include/profiles | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/profiles') diff --git a/include/profiles b/include/profiles index 101a8a77..42562c80 100644 --- a/include/profiles +++ b/include/profiles @@ -362,6 +362,13 @@ AddSetting "ssl-certificate-paths" "${SSL_CERTIFICATE_PATHS}" "Paths for SSL certificates" ;; + 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') + 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" + ;; + # Set strict mode for development and quality purposes strict) FIND=$(echo "${VALUE}" | egrep "^(1|true|yes)") && SET_STRICT=1 -- cgit v1.2.3