summaryrefslogtreecommitdiff
path: root/manifests/plugins/setup.pp
blob: 853bc00695ba3e65a4a0c59a48a83c385ec7db29 (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
28
29
30
31
class munin::plugins::setup {

  # This is required for the munin-node service and package requirements below.
  include munin::client

  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'],
      }
    }
  }
}