Skip to content

Commit

Permalink
Merge pull request #2473 from puppetlabs/CAT-1451-erb-to-epp-regression
Browse files Browse the repository at this point in the history
(CAT-1451) - Fixing nil check fix for SSL config
  • Loading branch information
Ramesh7 authored Sep 25, 2023
2 parents 9a92c87 + 230805d commit 312cd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mod/ssl.conf.epp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
SSLCACertificateFile "<%= $ssl_ca %>"
<%- } -%>
SSLUseStapling <%= apache::bool2httpd($ssl_stapling) %>
<%- if $ssl_stapling_return_errors { -%>
<%- if $ssl_stapling_return_errors != undef { -%>
SSLStaplingReturnResponderErrors <%= apache::bool2httpd($ssl_stapling_return_errors) %>
<%- } -%>
SSLStaplingCache "shmcb:<%= $_stapling_cache %>"
Expand Down

0 comments on commit 312cd85

Please sign in to comment.