diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-19 01:08:56 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-19 01:08:56 -0200 |
commit | 356a358f940fb9e4da28a4015a5dbaa73ae760e0 (patch) | |
tree | ddd6d41c74ec4c2f0f3a4bddcd927930c20ff641 /manifests/vserver.pp | |
parent | 918f653b38c15554db7a7a32e46eb74e2075b3c2 (diff) | |
download | puppet-virtual-356a358f940fb9e4da28a4015a5dbaa73ae760e0.tar.gz puppet-virtual-356a358f940fb9e4da28a4015a5dbaa73ae760e0.tar.bz2 |
Using $virtual_munin instead of $munin_allow
Diffstat (limited to 'manifests/vserver.pp')
-rw-r--r-- | manifests/vserver.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/vserver.pp b/manifests/vserver.pp index c2e29a4..b7d2c98 100644 --- a/manifests/vserver.pp +++ b/manifests/vserver.pp @@ -59,8 +59,8 @@ class vserver::host { } # Setup some plugins if munin is enabled in the system - case $munin_allow { - '': {} + case $virtual_munin { + false: {} default: { file { "/usr/local/share/munin-plugins/vserver_resources": @@ -79,8 +79,8 @@ class vserver::host { } # Setup some plugins if munin is enabled in the system - case $munin_allow { - '': {} + case $virtual_munin { + false: {} default: { # This creates a load average graph combining the individual load averages of each vserver on the host munin::plugin { |