Skip to content

Commit 312cd85

Browse files
authored
Merge pull request #2473 from puppetlabs/CAT-1451-erb-to-epp-regression
(CAT-1451) - Fixing nil check fix for SSL config
2 parents 9a92c87 + 230805d commit 312cd85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/mod/ssl.conf.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
SSLCACertificateFile "<%= $ssl_ca %>"
3030
<%- } -%>
3131
SSLUseStapling <%= apache::bool2httpd($ssl_stapling) %>
32-
<%- if $ssl_stapling_return_errors { -%>
32+
<%- if $ssl_stapling_return_errors != undef { -%>
3333
SSLStaplingReturnResponderErrors <%= apache::bool2httpd($ssl_stapling_return_errors) %>
3434
<%- } -%>
3535
SSLStaplingCache "shmcb:<%= $_stapling_cache %>"

0 commit comments

Comments
 (0)