summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-06-16 22:08:55 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-06-16 22:08:55 -0300
commite4f8a2fe68bfce91c2b856578ca03567dff81e5a (patch)
tree91aac41215717efe0fb237a2d948b9c28ad0191d /manifests
parent6012a7dc583431ca9090be41794a62f5492d1b1e (diff)
downloadpuppet-mumble-e4f8a2fe68bfce91c2b856578ca03567dff81e5a.tar.gz
puppet-mumble-e4f8a2fe68bfce91c2b856578ca03567dff81e5a.tar.bz2
Adding mumble::munin
Diffstat (limited to 'manifests')
-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",
+ }
+}