summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/munin.pp')
-rw-r--r--manifests/munin.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp
new file mode 100644
index 0000000..df1e6a3
--- /dev/null
+++ b/manifests/munin.pp
@@ -0,0 +1,14 @@
+class apcupsd::munin(
+ $ensure => present,
+) {
+ munin::plugin::deploy { 'apc_nis':
+ source => "apcupsd/munin/apc_nis" ,
+ ensure => $ensure,
+ }
+
+ # We might want to replace the debian plugin with a newer one which better
+ # maximum limits: http://munin-monitoring.org/browser/munin/plugins/node.d/apc_nis.in
+ munin::plugin { 'apc_nis':
+ ensure => $ensure,
+ }
+}