Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <% @jail_config.each do |name, config| -%> | |
2 <% if !config['logpath'].empty? -%> | |
3 [<%= name %>] | |
4 <% if config['filter'].empty? -%> | |
5 filter = <%= name %> | |
6 <% end -%> | |
7 <% configuration = scope.function_merge(@jail_default, config) -%> | |
8 <% configuration.each do |key, value| -%> | |
9 <%= key %> = <%= value %> | |
10 <% end %> | |
11 <% else -%> | |
12 <% raise Puppet::Error, "Log path missing from configuration" -%> | |
13 <% end -%> | |
14 <% end -%> | |
15 | |
OLD | NEW |