summaryrefslogtreecommitdiff
path: root/manifests/plugins/setup.pp
blob: c2c5ed3420b97f335ca3b4a9a6d83033d53a649c (plain)
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
27
class munin::plugins::setup {
  file {
    [ '/etc/munin/plugins', '/etc/munin/plugin-conf.d' ]:
      source => "puppet:///modules/common/empty",
      ignore => [ '.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'],
      }
    }
  }
}