1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-08 08:33:56 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
cn
b79c13217d Bump version 2013-04-27 16:13:06 +02:00
cn
99111ce459 Allow additional raw zone content for Bind generator 2013-04-27 16:12:43 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ module Dyndnsd
@ttl = config['ttl']
@dns = config['dns']
@email_addr = config['email_addr']
@additional_zone_content = config['additional_zone_content']
end
def generate(zone)
@@ -22,6 +23,8 @@ module Dyndnsd
out << "#{name} IN A #{ip}"
end
out << ""
out << @additional_zone_content
out << ""
out.join("\n")
end
end

View File

@@ -1,4 +1,4 @@
module Dyndnsd
VERSION = "0.0.2"
VERSION = "0.0.3"
end