Skip to content

Commit 7bb2be9

Browse files
Dinesh GujarDinesh Gujar
Dinesh Gujar
authored and
Dinesh Gujar
committed
CAT-1347 resolving comments
1 parent 6559ded commit 7bb2be9

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
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.erb [#1730](https://github.com/puppetlabs/puppetlabs-apache/pull/1730) ([](https://github.com/))
667+
- Actually create CASScrubRequestHeaders setting in _auth_cas.epp [#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/_aliases.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
ScriptAliasMatch <%= $alias_statement["scriptaliasmatch"] %> "<%= $alias_statement["path"] %>"
1212
<%- } -%>
1313
<%- } -%>
14-
<%- } -%>
14+
<%- } -%>

templates/vhost/_filters.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<% unless $filters.empty {-%>
22

33
## Filter module rules
4-
## as per http://httpd.apache.org/docs/2.2/mod/mod_filter.html
4+
## as per http://httpd.apache.org/docs/2.4/mod/mod_filter.html
55
<%- $filters.each |$filter| {-%>
66
<%= $filter %>
77
<%- } -%>

templates/vhost/_http2.epp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<% if $h2_copy_files != undef {-%>
22
H2CopyFiles <%= apache::bool2httpd($h2_copy_files) %>
33
<% } -%>
4-
<% unless $h2_direct == undef {-%>
4+
<% if $h2_direct != undef {-%>
55
H2Direct <%= apache::bool2httpd($h2_direct) %>
66
<% } -%>
77
<% if $h2_early_hints != undef {-%>
88
H2EarlyHints <%= apache::bool2httpd($h2_early_hints) %>
99
<% } -%>
10-
<% unless $h2_max_session_streams == undef {-%>
10+
<% if $h2_max_session_streams != undef {-%>
1111
H2MaxSessionStreams <%= $h2_max_session_streams %>
1212
<% } -%>
13-
<%- unless $h2_modern_tls_only == undef {-%>
13+
<%- if $h2_modern_tls_only != undef {-%>
1414
H2ModernTLSOnly <%= apache::bool2httpd($h2_modern_tls_only) %>
1515
<%- } -%>
16-
<%- unless $h2_push == undef {-%>
16+
<%- if $h2_push != undef {-%>
1717
H2Push <%= apache::bool2httpd($h2_push) %>
1818
<%- } -%>
19-
<%- unless $h2_push_diary_size == undef {-%>
19+
<%- if $h2_push_diary_size != undef {-%>
2020
H2PushDiarySize <%= $h2_push_diary_size %>
2121
<%- } -%>
2222
<%- $h2_push_priority.each |$expr| {-%>
@@ -25,21 +25,21 @@
2525
<%- $h2_push_resource.each |$expr| {-%>
2626
H2PushResource <%= $expr %>
2727
<%- } -%>
28-
<% unless $h2_serialize_headers == undef {-%>
28+
<% if $h2_serialize_headers != undef {-%>
2929
H2SerializeHeaders <%= apache::bool2httpd($h2_serialize_headers) %>
3030
<% } -%>
31-
<% unless $h2_stream_max_mem_size == undef {-%>
31+
<% if $h2_stream_max_mem_size != undef {-%>
3232
H2StreamMaxMemSize <%= $h2_stream_max_mem_size %>
3333
<% } -%>
34-
<%- unless $h2_tls_cool_down_secs == undef {-%>
34+
<%- if $h2_tls_cool_down_secs != undef {-%>
3535
H2TLSCoolDownSecs <%= $h2_tls_cool_down_secs %>
3636
<%- } -%>
37-
<%- unless $h2_tls_warm_up_size == undef {-%>
37+
<%- if $h2_tls_warm_up_size != undef {-%>
3838
H2TLSWarmUpSize <%= $h2_tls_warm_up_size %>
3939
<%- } -%>
40-
<% unless $h2_upgrade == undef {-%>
40+
<% if $h2_upgrade != undef {-%>
4141
H2Upgrade <%= apache::bool2httpd($h2_upgrade) %>
4242
<% } -%>
43-
<% unless $h2_window_size == undef {-%>
43+
<% if $h2_window_size != undef {-%>
4444
H2WindowSize <%= $h2_window_size %>
4545
<% } -%>

templates/vhost/_suexec.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<% if $suexec_user_group {-%>
22

33
SuexecUserGroup <%= $suexec_user_group %>
4-
<% } -%>
4+
<% } -%>

0 commit comments

Comments
 (0)