Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <% @jail_config.each do |name, config| -%> | |
2 <% if !config['logpath'].empty? -%> | |
3 [<%= name %>] | |
4 | |
5 enabled = <%= config['enabled'] ||= true %> | |
6 port = <%= config['port'] ||= 'all' %> | |
7 filter = <%= name %> | |
8 logpath = <%= config['logpath'] %> | |
9 maxretry = <%= config['maxretry'] ||= 6 %> | |
10 bantime = <%= config['bantime']||= 3600 %> | |
mathias
2016/11/24 16:08:48
The key-by-key assignment is limiting the user/con
f.lopez
2016/11/25 15:13:49
I agree but I couldn't find a way to make this hap
| |
11 <% end -%> | |
12 <% end -%> | |
OLD | NEW |