Skip to content

Commit 486cb24

Browse files
Dinesh GujarDinesh Gujar
Dinesh Gujar
authored and
Dinesh Gujar
committed
CAT-1347 ssl reverted spacing
1 parent 4bac835 commit 486cb24

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
664664

665665
### Fixed
666666

667-
- Actually create CASScrubRequestHeaders setting in _auth_cas.epp [#1730](https://github.com/puppetlabs/puppetlabs-apache/pull/1730) ([](https://github.com/))
667+
- Actually create CASScrubRequestHeaders setting in _auth_cas.erb [#1730](https://github.com/puppetlabs/puppetlabs-apache/pull/1730) ([](https://github.com/))
668668
- Fix typos [#1728](https://github.com/puppetlabs/puppetlabs-apache/pull/1728) ([hfm](https://github.com/hfm))
669669
- [MODULES-5644] Package name is libapache2-mpm-itk for Debian 9 [#1724](https://github.com/puppetlabs/puppetlabs-apache/pull/1724) ([zivis](https://github.com/zivis))
670670
- Fix case of setting apache::mpm_module to false [#1720](https://github.com/puppetlabs/puppetlabs-apache/pull/1720) ([edestecd](https://github.com/edestecd))

templates/vhost/_ssl.erb

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<%- if @ssl -%>
1+
<% if @ssl -%>
22

33
## SSL directives
44
SSLEngine on
@@ -7,62 +7,62 @@
77
SSLCertificateKeyFile "<%= @ssl_key %>"
88
<%- end -%>
99
<%- if @ssl_chain -%>
10-
SSLCertificateChainFile "<%= @ssl_chain %>"
10+
SSLCertificateChainFile "<%= @ssl_chain %>"
1111
<%- end -%>
1212
<%- if @ssl_protocol -%>
1313
SSLProtocol <%= [@ssl_protocol].flatten.compact.join(' ') %>
1414
<%- end -%>
1515
<%- if @ssl_cipher -%>
1616
<%- if @ssl_cipher.kind_of?(String) -%>
17-
SSLCipherSuite <%= @ssl_cipher %>
17+
SSLCipherSuite <%= @ssl_cipher %>
1818
<%- elsif @ssl_cipher.kind_of?(Hash) -%>
1919
<%- @ssl_cipher.map do |protocol, cipher| -%>
20-
SSLCipherSuite <%= protocol %> <%= cipher%>
20+
SSLCipherSuite <%= protocol %> <%= cipher%>
2121
<%- end -%>
2222
<%- else -%>
23-
SSLCipherSuite <%= @ssl_cipher.flatten.compact.join(':') %>
23+
SSLCipherSuite <%= @ssl_cipher.flatten.compact.join(':') %>
2424
<%- end -%>
2525
<%- end -%>
2626
<%- if not @ssl_honorcipherorder.nil? -%>
27-
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>
27+
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>
2828
<%- end -%>
2929
<%- if @ssl_verify_client -%>
30-
SSLVerifyClient <%= @ssl_verify_client %>
31-
<%- if @ssl_verify_depth -%>
32-
SSLVerifyDepth <%= @ssl_verify_depth %>
33-
<%- end -%>
30+
SSLVerifyClient <%= @ssl_verify_client %>
31+
<%- if @ssl_verify_depth -%>
32+
SSLVerifyDepth <%= @ssl_verify_depth %>
33+
<%- end -%>
3434
<%- end -%>
3535
<%- if @ssl_certs_dir && @ssl_certs_dir != '' -%>
36-
SSLCACertificatePath "<%= @ssl_certs_dir %>"
36+
SSLCACertificatePath "<%= @ssl_certs_dir %>"
3737
<%- end -%>
3838
<%- if @ssl_ca -%>
39-
SSLCACertificateFile "<%= @ssl_ca %>"
39+
SSLCACertificateFile "<%= @ssl_ca %>"
4040
<%- end -%>
4141
<%- if @ssl_crl_path -%>
42-
SSLCARevocationPath "<%= @ssl_crl_path %>"
42+
SSLCARevocationPath "<%= @ssl_crl_path %>"
4343
<%- end -%>
4444
<%- if @ssl_crl -%>
45-
SSLCARevocationFile "<%= @ssl_crl %>"
45+
SSLCARevocationFile "<%= @ssl_crl %>"
4646
<%- end -%>
4747
<%- if @ssl_crl_check -%>
48-
SSLCARevocationCheck <%= @ssl_crl_check %>
48+
SSLCARevocationCheck <%= @ssl_crl_check %>
4949
<%- end -%>
5050
<%- if @ssl_options -%>
51-
SSLOptions <%= Array(@ssl_options).join(' ') %>
51+
SSLOptions <%= Array(@ssl_options).join(' ') %>
5252
<%- end -%>
5353
<%- if @ssl_openssl_conf_cmd -%>
54-
SSLOpenSSLConfCmd <%= @ssl_openssl_conf_cmd %>
54+
SSLOpenSSLConfCmd <%= @ssl_openssl_conf_cmd %>
5555
<%- end -%>
5656
<%- unless @ssl_stapling.nil? -%>
57-
SSLUseStapling <%= scope.call_function('apache::bool2httpd', [@ssl_stapling]) %>
57+
SSLUseStapling <%= scope.call_function('apache::bool2httpd', [@ssl_stapling]) %>
5858
<%- end -%>
5959
<%- if @ssl_stapling_timeout -%>
60-
SSLStaplingResponderTimeout <%= @ssl_stapling_timeout %>
60+
SSLStaplingResponderTimeout <%= @ssl_stapling_timeout %>
6161
<%- end -%>
6262
<%- unless @ssl_stapling_return_errors.nil? -%>
63-
SSLStaplingReturnResponderErrors <%= scope.call_function('apache::bool2httpd', [@ssl_stapling_return_errors]) %>
63+
SSLStaplingReturnResponderErrors <%= scope.call_function('apache::bool2httpd', [@ssl_stapling_return_errors]) %>
6464
<%- end -%>
6565
<%- if @ssl_user_name -%>
66-
SSLUserName <%= @ssl_user_name %>
66+
SSLUserName <%= @ssl_user_name %>
6767
<%- end -%>
68-
<%- end -%>
68+
<% end -%>

0 commit comments

Comments
 (0)