summaryrefslogtreecommitdiff
path: root/manifests/master/munin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/master/munin.pp')
-rw-r--r--manifests/master/munin.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/master/munin.pp b/manifests/master/munin.pp
new file mode 100644
index 0000000..ca6fddc
--- /dev/null
+++ b/manifests/master/munin.pp
@@ -0,0 +1,13 @@
+# deploy puppet munin plugin
+class puppet::master::munin {
+ munin::plugin::deploy{'puppet_':
+ ensure => absent,
+ source => 'puppet/munin/puppet_';
+ }
+ munin::plugin{
+ ['puppet_clients','puppet_mem']:
+ ensure => 'puppet_',
+ require => Munin::Plugin::Deploy['puppet_'],
+ config => 'user root';
+ }
+}