]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/named/manifests/authoritative.pp
massive style guide fixups
[dsa-puppet.git] / modules / named / manifests / authoritative.pp
1 class named::authoritative inherits named {
2         file { '/etc/bind/named.conf.debian-zones':
3                 source  => 'puppet:///modules/named/common/named.conf.debian-zones',
4                 notify  => Service['bind9'],
5         }
6         file { '/etc/bind/named.conf.options':
7                 content => template('named/named.conf.options.erb'),
8                 notify  => Service['bind9'],
9         }
10         file { '/etc/bind/named.conf.shared-keys':
11                 mode    => '0640',
12                 owner   => root,
13                 group   => bind,
14         }
15 }