diff --git a/templates/named.conf.erb b/templates/named.conf.erb index d0fe185a7..7002a5730 100644 --- a/templates/named.conf.erb +++ b/templates/named.conf.erb @@ -84,12 +84,12 @@ options { <% if !@extra_options.empty? -%> <% @extra_options.sort_by {|key, value| key}.each do |key,value| -%> - <%# Deal with options that don't play well as array elements %> - <% if key.eql?('also-notify') -%> - <%= key %> { <%= value.join('; ') %> } - <% else -%> - <%= key %> <%= value %>; - <% end -%> + <%# Deal with options that don't play well as array elements %> + <% if key.eql?('also-notify') -%> + <%= key %> { <%= value.join('; ') %>; }; + <% else -%> + <%= key %> <%= value %>; + <% end -%> <% end -%> <% end -%>