Class: Zonesync::Zonefile::NS

Inherits:
Record
  • Object
show all
Defined in:
lib/zonesync/zonefile.rb

Instance Attribute Summary collapse

Attributes inherited from Record

#comment, #klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ NS

Returns a new instance of NS.



227
228
229
230
231
232
233
234
235
236
237
# File 'lib/zonesync/zonefile.rb', line 227

def initialize(vars, zonefile_record)
  @vars = vars
  if zonefile_record
    self.host = qualify_host(zonefile_record.host.to_s)
    @vars[:last_host] = host
    self.ttl = zonefile_record.ttl.to_i
    self.klass = zonefile_record.klass.to_s
    self.domainname = qualify_host(zonefile_record.nameserver.to_s)
    self.comment = zonefile_record.comment&.to_s
  end
end

Instance Attribute Details

#domainnameObject Also known as: nameserver

Returns the value of attribute domainname.



225
226
227
# File 'lib/zonesync/zonefile.rb', line 225

def domainname
  @domainname
end

#hostObject

Returns the value of attribute host.



225
226
227
# File 'lib/zonesync/zonefile.rb', line 225

def host
  @host
end