blob: 06bb00b9ee08d18aa528688d1c05b35b336b44b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Register a munin node with snmp enabled
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',
}
}
|