Sha256: 170ff11e20a4f0db320bd8f860d6dd119088fb6a7595b074d8bea2e628079961
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Dyndnsd module Generator class Bind # @param domain [String] # @param config [Hash{String => Object}] def initialize(domain, config) @domain = domain @ttl = config['ttl'] @dns = config['dns'] @email_addr = config['email_addr'] @additional_zone_content = config['additional_zone_content'] end # @param db [Dyndnsd::Database] # @return [String] def generate(db) out = [] out << "$TTL #{@ttl}" out << "$ORIGIN #{@domain}." out << '' out << "@ IN SOA #{@dns} #{@email_addr} ( #{db['serial']} 3h 5m 1w 1h )" out << "@ IN NS #{@dns}" out << '' db['hosts'].each do |hostname, ips| ips.each do |ip| ip = IPAddr.new(ip).native type = ip.ipv6? ? 'AAAA' : 'A' name = hostname.chomp('.' + @domain) out << "#{name} IN #{type} #{ip}" end end out << '' out << @additional_zone_content out << '' out.join("\n") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dyndnsd-2.2.0 | lib/dyndnsd/generator/bind.rb |