summaryrefslogtreecommitdiff
path: root/manifests/register
diff options
context:
space:
mode:
authorMarcel Haerry <haerry@puzzle.ch>2010-09-27 12:10:02 +0200
committerMarcel Haerry <haerry@puzzle.ch>2010-09-27 12:10:02 +0200
commit334b4a3ba627ddf481d68f8f29c925895470de62 (patch)
treed443f21cb8943ea4f038d7d1dd58e751037bdd0d /manifests/register
parent015b7262e4b0bedad9500e982350197160a4ad1d (diff)
use better snmp register define
Diffstat (limited to 'manifests/register')
-rw-r--r--manifests/register/snmp.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/manifests/register/snmp.pp b/manifests/register/snmp.pp
new file mode 100644
index 0000000..c0d9279
--- /dev/null
+++ b/manifests/register/snmp.pp
@@ -0,0 +1,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} | 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',
+ }
+}