summaryrefslogtreecommitdiff
path: root/manifests/client/base.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client/base.pp')
-rw-r--r--manifests/client/base.pp8
1 files changed, 3 insertions, 5 deletions
diff --git a/manifests/client/base.pp b/manifests/client/base.pp
index 17387e8..6b4bef9 100644
--- a/manifests/client/base.pp
+++ b/manifests/client/base.pp
@@ -1,4 +1,6 @@
-class munin::client::base {
+class munin::client::base(
+ $munin_allow = hiera('munin_allow','127.0.0.1')
+) {
service { 'munin-node':
ensure => running,
enable => true,
@@ -9,10 +11,6 @@ class munin::client::base {
ensure => directory,
mode => 0755, owner => root, group => 0;
}
- $real_munin_allow = $munin_allow ? {
- '' => '127.0.0.1',
- default => $munin_allow
- }
file {'/etc/munin/munin-node.conf':
content => template("munin/munin-node.conf.$operatingsystem"),
notify => Service['munin-node'],