aboutsummaryrefslogtreecommitdiff
path: root/templates/ferm-table-chain-config-include.epp
diff options
context:
space:
mode:
Diffstat (limited to 'templates/ferm-table-chain-config-include.epp')
-rw-r--r--templates/ferm-table-chain-config-include.epp14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/ferm-table-chain-config-include.epp b/templates/ferm-table-chain-config-include.epp
new file mode 100644
index 0000000..722d3e7
--- /dev/null
+++ b/templates/ferm-table-chain-config-include.epp
@@ -0,0 +1,14 @@
+<%- | String[1] $ip,
+Ferm::Tables $table,
+String[1] $chain,
+Stdlib::Absolutepath $filename,
+| -%>
+
+domain (<%= $ip %>) table <%= $table %> {
+ chain <%= $chain %> {
+ <%- if $table == 'filter' and $chain == 'INPUT' { -%>
+ interface lo ACCEPT;
+ <%- } -%>
+ @include '<%= $filename %>';
+ }
+}