Fix Puppet 3.2.x deprecation warnings
This commit is contained in:
parent
7c1674202a
commit
a0258920d1
4 changed files with 22 additions and 22 deletions
|
@ -1,5 +1,5 @@
|
|||
upstream <%= @name %> {
|
||||
<% if @upstream_cfg_prepend -%><% upstream_cfg_prepend.sort_by{|k,v| k}.each do |key,value| %>
|
||||
<% if @upstream_cfg_prepend -%><% @upstream_cfg_prepend.sort_by{|k,v| k}.each do |key,value| %>
|
||||
<%= key %> <%= value %>;
|
||||
<% end -%><% end -%>
|
||||
<% @members.each do |i| %>
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
|
||||
server {
|
||||
listen <%= listen_ip %>:<%= listen_port %><% if @listen_options %> <%= listen_options %><% end %>;
|
||||
listen <%= @listen_ip %>:<%= @listen_port %><% if @listen_options %> <%= @listen_options %><% end %>;
|
||||
<% # check to see if ipv6 support exists in the kernel before applying %>
|
||||
<% if ipv6_enable && (defined? @ipaddress6) %>
|
||||
listen [<%= ipv6_listen_ip %>]:<%= ipv6_listen_port %><% if @ipv6_listen_options %> <%= ipv6_listen_options %><% end %> ipv6only=on;
|
||||
<% if @ipv6_enable && (defined? @ipaddress6) %>
|
||||
listen [<%= @ipv6_listen_ip %>]:<%= @ipv6_listen_port %><% if @ipv6_listen_options %> <%= @ipv6_listen_options %><% end %> ipv6only=on;
|
||||
<% end %>
|
||||
server_name <%= server_name.join(" ") %>;
|
||||
protocol <%= protocol %>;
|
||||
xclient <%= xclient %>;
|
||||
auth_http <%= auth_http %>;
|
||||
starttls <%= starttls %>;
|
||||
<% if starttls == 'on' || starttls == 'only' %>
|
||||
ssl_certificate <%= ssl_cert %>;
|
||||
ssl_certificate_key <%= ssl_key %>;
|
||||
server_name <%= @server_name.join(" ") %>;
|
||||
protocol <%= @protocol %>;
|
||||
xclient <%= @xclient %>;
|
||||
auth_http <%= @auth_http %>;
|
||||
starttls <%= @starttls %>;
|
||||
<% if @starttls == 'on' || @starttls == 'only' %>
|
||||
ssl_certificate <%= @ssl_cert %>;
|
||||
ssl_certificate_key <%= @ssl_key %>;
|
||||
|
||||
ssl_session_timeout 5m;
|
||||
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
|
||||
server {
|
||||
listen <%= ssl_port %>;
|
||||
listen <%= @ssl_port %>;
|
||||
<% # check to see if ipv6 support exists in the kernel before applying %>
|
||||
<% if ipv6_enable && (defined? @ipaddress6) %>
|
||||
listen [<%= ipv6_listen_ip %>]:<%= ipv6_listen_port %> <% if @ipv6_listen_options %><%= ipv6_listen_options %><% end %> ipv6only=on;
|
||||
<% if @ipv6_enable && (defined? @ipaddress6) %>
|
||||
listen [<%= @ipv6_listen_ip %>]:<%= @ipv6_listen_port %> <% if @ipv6_listen_options %><%= @ipv6_listen_options %><% end %> ipv6only=on;
|
||||
<% end %>
|
||||
server_name <%= server_name.join(" ") %>;
|
||||
protocol <%= protocol %>;
|
||||
xclient <%= xclient %>;
|
||||
auth_http <%= auth_http %>;
|
||||
server_name <%= @server_name.join(" ") %>;
|
||||
protocol <%= @protocol %>;
|
||||
xclient <%= @xclient %>;
|
||||
auth_http <%= @auth_http %>;
|
||||
|
||||
ssl on;
|
||||
ssl_certificate <%= ssl_cert %>;
|
||||
ssl_certificate_key <%= ssl_key %>;
|
||||
ssl_certificate <%= @ssl_cert %>;
|
||||
ssl_certificate_key <%= @ssl_key %>;
|
||||
|
||||
ssl_session_timeout 5m;
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ server {
|
|||
<%# make sure that allow comes before deny by forcing the allow key (if it -%>
|
||||
<%# exists) to be first in the output order. The hash keys also need to be -%>
|
||||
<%# sorted so that the ordering is stable. -%>
|
||||
<% if @vhost_cfg_prepend -%><% vhost_cfg_prepend.sort_by{ |k, v| k.to_s == 'allow' ? '' : k.to_s }.each do |key,value| -%>
|
||||
<% if @vhost_cfg_prepend -%><% @vhost_cfg_prepend.sort_by{ |k, v| k.to_s == 'allow' ? '' : k.to_s }.each do |key,value| -%>
|
||||
<%= key %> <%= value %>;
|
||||
<% end -%><% end -%>
|
||||
<% if @root -%>
|
||||
|
|
Loading…
Reference in a new issue