projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f7e7e5
)
Fetch openpgpkey zone to denis
author
Peter Palfrader
<peter@palfrader.org>
Sun, 7 Jul 2019 10:01:30 +0000
(12:01 +0200)
committer
Peter Palfrader
<peter@palfrader.org>
Sun, 7 Jul 2019 10:01:30 +0000
(12:01 +0200)
modules/named/manifests/primary.pp
patch
|
blob
|
history
diff --git
a/modules/named/manifests/primary.pp
b/modules/named/manifests/primary.pp
index
7b79ce4
..
64fc348
100644
(file)
--- a/
modules/named/manifests/primary.pp
+++ b/
modules/named/manifests/primary.pp
@@
-20,4
+20,23
@@
class named::primary inherits named::authoritative {
content => template('named/named.conf.external-secondaries-ACLs.erb'),
}
+ concat::fragment { 'dsa-named-conf-puppet-misc---openpgpkey-zone':
+ target => '/etc/bind/named.conf.puppet-misc',
+ order => '020',
+ content => @("EOF"),
+ zone "_openpgpkey.debian.org" {
+ type slave;
+ file "db._openpgpkey.debian.org";
+ allow-query { any; };
+ allow-transfer {
+ 127.0.0.1;
+ rcode0-ACL;
+ dnsnode-ACL;
+ dnsnodeapi-ACL;
+ };
+ also-notify {
+ };
+ };
+ | EOF
+ }
}