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