summaryrefslogtreecommitdiff
path: root/manifests/register/snmp.pp
blob: 0c3ac5c696a44ef84be1addd31f43e94550cf1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
define munin::register::snmp (
  $community = 'public',
  $description = 'absent'
)
{
    $fhost = $name
    $munin_host_real = $fqdn
    $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",
    }

    @@file { "munin_snmp_${fhost}":
        ensure => present,
        path => "/var/lib/puppet/modules/munin/nodes/${fhost}",
        content => template("munin/client.erb"),
        tag => 'munin',
    }
}