Mercurial > repos > other > Puppet
diff modules/apache/templates/vhost/_header.erb @ 437:b8d6ada284dd
Update Apache module to latest version
Also converted some params to ints to match
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 14 Aug 2022 11:30:13 +0100 |
parents | 956e484adc12 |
children |
line wrap: on
line diff
--- a/modules/apache/templates/vhost/_header.erb Wed Apr 19 18:45:23 2023 +0100 +++ b/modules/apache/templates/vhost/_header.erb Sun Aug 14 11:30:13 2022 +0100 @@ -1,10 +1,8 @@ -<% if @headers and ! @headers.empty? -%> +<% unless @headers.empty? -%> ## Header rules - ## as per http://httpd.apache.org/docs/2.2/mod/mod_headers.html#header - <%- Array(@headers).each do |header_statement| -%> - <%- if header_statement != '' -%> + ## as per http://httpd.apache.org/docs/2.4/mod/mod_headers.html#header + <%- @headers.each do |header_statement| -%> Header <%= header_statement %> - <%- end -%> <%- end -%> <% end -%>