class Dns::CatalogZone::Provider::Knot::Zone
Attributes
domain[RW]
file[RW]
storage[RW]
template[RW]
Public Instance Methods
print()
click to toggle source
# File lib/dns/catalog_zone/provider/knot.rb, line 114 def print output_r " - domain: #{@domain.to_s + '.'}" output_r " storage: #{storage}" output_r " file: #{file}" output_r " master: [#{@masters.join(', ')}]" unless @masters.empty? output_r " notify: [#{@notifies.join(', ')}]" unless @notifies.empty? output_r " acl: [#{@acls.join(', ')}]" unless @acls.empty? output_r " template: #{template}" @output end