aboutsummaryrefslogtreecommitdiff
path: root/manifests/xen/munin/plugins.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/xen/munin/plugins.pp')
-rw-r--r--manifests/xen/munin/plugins.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/manifests/xen/munin/plugins.pp b/manifests/xen/munin/plugins.pp
new file mode 100644
index 0000000..00982ce
--- /dev/null
+++ b/manifests/xen/munin/plugins.pp
@@ -0,0 +1,15 @@
+class virtual::xen::munin::plugins {
+ munin::remoteplugin {
+ xen-multi:
+ source => "puppet:///modules/virtual/munin/xen_mem",
+ config => "user root",
+ ensure => absent;
+ xen_vm:
+ source => "puppet:///modules/virtual/munin/xen_vm",
+ config => "user root",
+ ensure => absent;
+ 'xen-multi':
+ source => 'puppet:///modules/virtual/munin/xen-multi',
+ config => 'user root';
+ }
+}