summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/munin.pp')
-rw-r--r--manifests/munin.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp
new file mode 100644
index 0000000..79b1ebe
--- /dev/null
+++ b/manifests/munin.pp
@@ -0,0 +1,16 @@
+# Plugins thanks to https://github.com/munin-monitoring/contrib.git
+class mumble::munin {
+ package { 'python-zeroc-ice':
+ ensure => present,
+ }
+
+ munin::plugin::deploy { 'mumble_users':
+ source => "mumble/munin/mumble_users",
+ ensure => "present",
+ }
+
+ munin::plugin::deploy { 'mumble_stats':
+ source => "mumble/munin/mumble_stats",
+ ensure => "present",
+ }
+}