dyndnsd/lib/dyndnsd/generator/bind.rb

30 lines
695 B
Ruby

module Dyndnsd
module Generator
class Bind
def initialize(domain, config)
@domain = domain
@ttl = config['ttl']
@dns = config['dns']
@email_addr = config['email_addr']
end
def generate(zone)
out = []
out << "$TTL #{@ttl}"
out << "$ORIGIN #{@domain}."
out << ""
out << "@ IN SOA #{@dns} #{@email_addr} ( #{zone['serial']} 3h 5m 1w 1h )"
out << "@ IN NS #{@dns}"
out << ""
zone['hosts'].each do |hostname,ip|
name = hostname.chomp('.' + @domain)
out << "#{name} IN A #{ip}"
end
out << ""
out.join("\n")
end
end
end
end