1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
class munin::plugins::setup {
file {
[ '/etc/munin/plugins', '/etc/munin/plugin-conf.d' ]:
ignore => 'snmp_*',
ensure => directory, checksum => mtime,
recurse => true, purge => true, force => true,
mode => 0755, owner => root, group => 0,
notify => Service['munin-node'];
'/etc/munin/plugin-conf.d/munin-node':
ensure => present,
mode => 0644, owner => root, group => 0,
notify => Service['munin-node'],
}
case $::kernel {
openbsd: {
File['/etc/munin/plugin-conf.d/munin-node']{
before => File['/var/run/munin'],
}
}
default: {
File['/etc/munin/plugin-conf.d/munin-node']{
before => Package['munin-node'],
}
}
}
}
|