diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/munin.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp index ad6d6d4..74f6947 100644 --- a/manifests/munin.pp +++ b/manifests/munin.pp @@ -1,7 +1,6 @@ class apcupsd::munin( $ensure = present ) { - # TODO: disable this in the future as apcupsd_ww is more flexible munin::plugin::deploy { 'apc_nis': source => "apcupsd/munin/apc_nis", ensure => $ensure, @@ -10,6 +9,6 @@ class apcupsd::munin( # From http://munin-monitoring.org/browser/munin-contrib/plugins/ups/apcupsd_ww munin::plugin::deploy { 'apcupsd_ww': source => "apcupsd/munin/apcupsd_ww", - ensure => $ensure, + ensure => absent, } } |