Skip to content

Commit 91bed86

Browse files
authored
Merge pull request puppetlabs#1578 from bmjen/fix-ci
(maint) Fix the vhost ssl template correctly this time
2 parents 5a24703 + 90e50ee commit 91bed86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/vhost/_ssl.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<%- if @ssl_stapling_timeout && scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%>
5050
SSLStaplingResponderTimeout <%= @ssl_stapling_timeout %>
5151
<%- end -%>
52-
<%- if (not @ssl_stapling_return_errors.nil? && scope.function_versioncmp([@apache_version, '2.4']) >= 0) -%>
52+
<%- if (not @ssl_stapling_return_errors.nil?) && (scope.function_versioncmp([@apache_version, '2.4']) >= 0) -%>
5353
SSLStaplingReturnResponderErrors <%= scope.function_bool2httpd([@ssl_stapling_return_errors]) %>
5454
<%- end -%>
5555
<% end -%>

0 commit comments

Comments
 (0)