summaryrefslogtreecommitdiff
path: root/templates/zone-slave.erb
blob: b5b3754ab92998cecdd76bd7e3aa660bee53ca5d (plain)
1
2
3
4
5
6
7
8
9
10
11
# File managed by puppet
zone <%=name%> IN {
  type slave;
  <% if zone_masters.is_a?(Array) -%>
  masters { <%= zone_masters.join('; ') -%>; };
  <% else -%>
  masters { <%= zone_masters %>; };
  <% end -%>
  allow-query { any; };
  notify yes;
}