]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/named/manifests/init.pp
some class reshuffling
[dsa-puppet.git] / modules / named / manifests / init.pp
1 class named {
2         include munin-node::bind
3
4         package {
5                 bind9: ensure => installed;
6         }
7
8         exec {
9                 "bind9 restart":
10                         path        => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin",
11                         refreshonly => true,
12                         ;
13         }
14         exec {
15                 "bind9 reload":
16                         path        => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin",
17                         refreshonly => true,
18                         ;
19         }
20 }
21
22 # vim: set fdm=marker ts=8 sw=8 et: