aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/munin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystems/munin.pp')
-rw-r--r--manifests/subsystems/munin.pp21
1 files changed, 0 insertions, 21 deletions
diff --git a/manifests/subsystems/munin.pp b/manifests/subsystems/munin.pp
deleted file mode 100644
index 770d551..0000000
--- a/manifests/subsystems/munin.pp
+++ /dev/null
@@ -1,21 +0,0 @@
-# Define a munin node
-define munin_node(
- $port = hiera('nodo::munin_node::port', '4949'),
- $allow = hiera('nodo::munin_node::allow', ''),
- $host = hiera('nodo::munin_node::host', $::fqdn),
- $listen = hiera('nodo::munin_node::listen', '*')
-) {
-
- case $allow {
- '': { fail("Please set nodo::munin_node::allow in your config") }
- }
-
- class { 'munin::client':
- port => $port,
- allow => $allow,
- host => $host,
- listen => $listen,
- }
-
- munin::plugin { apt_all: ensure => present; }
-}