summaryrefslogtreecommitdiff
path: root/manifests/register/snmp.pp
blob: 78c3e91401bcec0002598358ed416070cdbcaa5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
define munin::register::snmp (
  $community = 'public',
  $description = 'absent',
  $port = '4949',
  $host = $::fqdn
) {
  $fhost = $name
  $client_type = 'snmp'
  $config = [ 'use_node_name no' ]

  exec { "munin_register_snmp_${fhost}":
    command => "munin-node-configure --snmp ${fhost} --snmpcommunity ${community} --shell | sh",
    unless => "ls /etc/munin/plugins/snmp_${fhost}_* &> /dev/null",
  }

  @@concat::fragment{ "munin_snmp_${fhost}":
    target => '/etc/munin/munin.conf',
    content => template("munin/client.erb"),
    tag => 'munin',
  }
}