diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-03 16:48:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-03 16:48:03 -0300 |
commit | 051c4c67ca153f7f936ba9d761846390f580d7b7 (patch) | |
tree | 57cc4782c094ae771180e3964d95d774a6fb74e3 /manifests/base | |
parent | 2970d840eff89d8cc028f18cba22cfb155f54fcb (diff) | |
download | puppet-nodo-051c4c67ca153f7f936ba9d761846390f580d7b7.tar.gz puppet-nodo-051c4c67ca153f7f936ba9d761846390f580d7b7.tar.bz2 |
Removing nodo::vserver::use_nagios and nodo::host::use_nagios lookups
Diffstat (limited to 'manifests/base')
-rw-r--r-- | manifests/base/host.pp | 3 | ||||
-rw-r--r-- | manifests/base/vserver.pp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/manifests/base/host.pp b/manifests/base/host.pp index f57aeb4..a2753c5 100644 --- a/manifests/base/host.pp +++ b/manifests/base/host.pp @@ -39,8 +39,7 @@ class nodo::base::host { # Monitoring if !defined(Class['nodo::subsystem::monitor']) { class { 'nodo::subsystem::monitor': - type => 'host', - use_nagios => hiera('nodo::host::use_nagios', True), + type => 'host', } } diff --git a/manifests/base/vserver.pp b/manifests/base/vserver.pp index 433be5a..68392ec 100644 --- a/manifests/base/vserver.pp +++ b/manifests/base/vserver.pp @@ -29,8 +29,7 @@ class nodo::base::vserver { # Nagios configuration class { 'nodo::subsystem::monitor': - type => 'vserver', - use_nagios => hiera('nodo::vserver::use_nagios', false), + type => 'vserver', } } } |