aboutsummaryrefslogtreecommitdiff
path: root/templates/ferm.conf.epp
blob: 3b1a21160ba7ccf2797a418f372e9d160904e046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<%- | String[1] $ip,
Stdlib::Absolutepath $configdirectory,
Hash[String[1], Array[String[1]]] $preserve_chains_in_tables,
| -%>

<%- $preserve_chains_in_tables.each |$table, $chains| { -%>
domain (<%= $ip %>) table <%= $table %> {
  <%- $chains.each |$chain| { -%>
  chain <%= $chain %> @preserve;
  <%- } -%>
}
<%- } -%>