aboutsummaryrefslogtreecommitdiff
path: root/manifests/host.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/host.pp')
-rw-r--r--manifests/host.pp7
1 files changed, 5 insertions, 2 deletions
diff --git a/manifests/host.pp b/manifests/host.pp
index 88e9005..a38ed53 100644
--- a/manifests/host.pp
+++ b/manifests/host.pp
@@ -38,8 +38,11 @@ class nodo::host inherits nodo {
}
# Munin configuration
- munin_node { "$hostname":
- port => '4900',
+ $munin = hiera('nodo::host::use_munin', True)
+ if $munin == true {
+ munin_node { "$hostname":
+ port => '4900',
+ }
}
}