summaryrefslogtreecommitdiff
path: root/templates/zone-master.erb
blob: d9e88fded8339b3d3259628d0f1604d6f1ce0c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# File managed by puppet
zone "<%=name%>" IN {
  type master;
  file "/etc/bind/pri/<%=name%>.conf";
<% if zone_xfers and not zone_xfers.empty? -%>
  allow-transfer { <%= zone_xfers.collect! {|i| "#{i}" }.join('; ') -%> };
<% else -%>
  allow-transfer { none; };
<% end -%>
  allow-query { any; };
  notify yes;
};