summaryrefslogtreecommitdiff
path: root/templates/zoneconf.epp
diff options
context:
space:
mode:
Diffstat (limited to 'templates/zoneconf.epp')
-rw-r--r--templates/zoneconf.epp20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/zoneconf.epp b/templates/zoneconf.epp
new file mode 100644
index 0000000..cb702be
--- /dev/null
+++ b/templates/zoneconf.epp
@@ -0,0 +1,20 @@
+<%- | String $zone,
+ String $type,
+ String $update_policy,
+ | -%>
+<%# one zone entry for the bind9 configuration file %>
+zone "<%= $zone %>" {
+ type <%= $type %>;
+ file "zones/<%= $zone %>.db";
+
+ <%- if $type == 'master' or $type == 'slave' { %>
+ journal "journal/<%= $zone %>.jnl";
+ <%- } %>
+
+
+ <%- if $update_policy { %>
+ update-policy {
+ <%= $update_policy %>;
+ };
+ <%- } %>
+};