X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/722833be07c07adb4b487e1c57fb98b31c4c30f3..9d456f01b9ef62193a864f8f2c8a81b563c0f51b:/cookbooks/fail2ban/templates/default/jail.erb diff --git a/cookbooks/fail2ban/templates/default/jail.erb b/cookbooks/fail2ban/templates/default/jail.erb index 20010d1b2..c155e0f6c 100644 --- a/cookbooks/fail2ban/templates/default/jail.erb +++ b/cookbooks/fail2ban/templates/default/jail.erb @@ -1,20 +1,16 @@ # DO NOT EDIT - This file is being maintained by Chef -[DEFAULT] -destemail = admins@openstreetmap.org -banaction = shorewall -bantime = 14400 -<% @jails.each do |jail| -%> - -[<%= jail[:name] %>] +[<%= @name %>] enabled = true -<% if jail[:protocol] -%> -protocol = <%= jail[:protocol] %> +<% if @protocol -%> +protocol = <%= @protocol %> <% end -%> -port = <%= jail[:port] %> -filter = <%= jail[:filter] %> -logpath = <%= jail[:logpath] %> -<% if jail[:maxretry] -%> -maxretry = <%= jail[:maxretry] %> +port = <%= @ports.join(",") %> +filter = <%= @filter %> +logpath = <%= @logpath %> +<% if @maxretry -%> +maxretry = <%= @maxretry %> <% end -%> +<% if @ignoreips -%> +ignoreip = <%= @ignoreips.join(",") %> <% end -%>