| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 <% @jail_config.each do |name, config| -%> | 1 <% @jails.each do |name, config| -%> |
| 2 <% if !config['logpath'].empty? -%> | 2 <% if !config['logpath'].empty? -%> |
|
mathias
2016/11/29 13:21:27
Why this condition? And why just silently ignoring
f.lopez
2016/12/01 09:13:50
The path to the log file is necessary so fail2ban
| |
| 3 [<%= name %>] | 3 [<%= name %>] |
| 4 <% if config['filter'].empty? -%> | |
| 4 filter = <%= name %> | 5 filter = <%= name %> |
|
mathias
2016/11/29 13:21:26
The filter should be an extra parameter of the cur
f.lopez
2016/12/01 09:13:50
Acknowledged.
| |
| 6 <% end -%> | |
| 5 <% configuration = scope.function_merge(@jail_default, config) -%> | 7 <% configuration = scope.function_merge(@jail_default, config) -%> |
| 6 <% configuration.each do |key, value| -%> | 8 <% configuration.each do |key, value| -%> |
| 7 <%= key %> = <%= value %> | 9 <%= key %> = <%= value %> |
| 8 <% end %> | 10 <% end %> |
| 11 <% else -%> | |
| 12 <% raise Puppet::Error, "Log path missing from configuration" -%> | |
| 9 <% end -%> | 13 <% end -%> |
| 10 <% end -%> | 14 <% end -%> |
| 11 | 15 |
| LEFT | RIGHT |