blob: 55d77bca9499399f6a25e6d708e2841fdcd257bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class bind::master inherits bind {
Tld_redirections::Domain <<| |>>
$managed_tlds = list_exported_ressources('Tld_redirections::Domain')
file { "/var/lib/named/var/named/master}":
ensure => directory
}
File['/var/lib/named/etc/named.conf'] {
content => template('bind/named_base.conf', 'bind/named_master.conf'),
}
}
|