Skip to content

Commit 3a13cee

Browse files
committedSep 5, 2013
Merge pull request #8 from ptinsley/master
adding NS records to make bind happy with default_zone records
2 parents ebe67b1 + 18506be commit 3a13cee

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
 

‎manifests/default_zone.pp

+16
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,10 @@
266266
record_type => 'AAAA',
267267
target => '::1',
268268
}
269+
bind::ns {'localhost-localhost':
270+
zone => 'localhost',
271+
target => 'localhost.'
272+
}
269273

270274
# localhost reverse
271275
bind::zone{ '127.in-addr.arpa':
@@ -281,6 +285,10 @@
281285
record_type => 'PTR',
282286
target => 'localhost.',
283287
}
288+
bind::ns {'127-localhost.':
289+
zone => '127.in-addr.arpa',
290+
target => 'localhost.'
291+
}
284292

285293
# reverse 0
286294
bind::zone{ '0.in-addr.arpa':
@@ -291,6 +299,10 @@
291299
zone_ns => 'localhost.',
292300
zone_contact => 'root.localhost.',
293301
}
302+
bind::ns {'0-localhost.':
303+
zone => '0.in-addr.arpa',
304+
target => 'localhost.'
305+
}
294306

295307
# reverse 255
296308
bind::zone{ '255.in-addr.arpa':
@@ -301,4 +313,8 @@
301313
zone_ns => 'localhost.',
302314
zone_contact => 'root.localhost.',
303315
}
316+
bind::ns {'255-localhost.':
317+
zone => '255.in-addr.arpa',
318+
target => 'localhost.'
319+
}
304320
}

0 commit comments

Comments
 (0)
Please sign in to comment.