diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-12 17:09:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-12 17:09:03 -0300 |
commit | fe1c86b8f938283e9dd8196a8b11a9648f4b49e6 (patch) | |
tree | c2d999eca03862a3e4af57e0885397adf6bbc6ec /manifests/subsystems/monitor.pp | |
parent | ec5c750d12bdc7948bb3c04f0c72817718a0bf47 (diff) | |
download | puppet-nodo-fe1c86b8f938283e9dd8196a8b11a9648f4b49e6.tar.gz puppet-nodo-fe1c86b8f938283e9dd8196a8b11a9648f4b49e6.tar.bz2 |
Major refactor
Diffstat (limited to 'manifests/subsystems/monitor.pp')
-rw-r--r-- | manifests/subsystems/monitor.pp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/manifests/subsystems/monitor.pp b/manifests/subsystems/monitor.pp deleted file mode 100644 index 45608a9..0000000 --- a/manifests/subsystems/monitor.pp +++ /dev/null @@ -1,26 +0,0 @@ -class monitor( - $type = 'vserver', - $use_nagios = hiera('nodo::monitor::use_nagios', True), - $use_fqdn = hiera('nodo::monitor::use_nagios_fqdn', false) -) { - - if $use_nagios != false { - - if $type == 'vserver' { - include nagios::target::fqdn - nagios::service::ping { "${::fqdn}": } - } - - if $type == 'host' or $type == 'personal' { - if $use_fqdn == true { - include nagios::target::fqdn - } - else { - include nagios::target - } - nagios::service::ping { "${::fqdn}": } - } - - } - -} |