diff options
Diffstat (limited to 'templates/zone-slave.erb')
-rw-r--r-- | templates/zone-slave.erb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/zone-slave.erb b/templates/zone-slave.erb index c867428..d98a22f 100644 --- a/templates/zone-slave.erb +++ b/templates/zone-slave.erb @@ -1,10 +1,10 @@ # File managed by puppet -zone <%=zone%> IN { +zone <%=@zone%> IN { type slave; - <% if zone_masters.is_a?(Array) -%> - masters { <%= zone_masters.join('; ') -%>; }; + <% if @zone_masters.is_a?(Array) -%> + masters { <%= @zone_masters.join('; ') -%>; }; <% else -%> - masters { <%= zone_masters %>; }; + masters { <%= @zone_masters %>; }; <% end -%> allow-query { any; }; }; |