From 345d45b406010c59ec8cfae99f177fbe9df10a78 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 20 Jan 2013 16:35:53 -0200 Subject: Adding monitor class to wrap around nagios --- manifests/subsystems/monitor.pp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 manifests/subsystems/monitor.pp (limited to 'manifests/subsystems') diff --git a/manifests/subsystems/monitor.pp b/manifests/subsystems/monitor.pp new file mode 100644 index 0000000..5be3509 --- /dev/null +++ b/manifests/subsystems/monitor.pp @@ -0,0 +1,25 @@ +class monitor( + $type = 'vserver', + $use_nagios = true, +) { + + if $use_nagios != false { + + if $type == 'vserver' { + include nagios::target::fqdn + nagios::service::ping { "$fqdn": } + } + + if $type == 'host' or $type == 'personal' { + if extlookup('use_nagios_fqdn', false) == true { + include nagios::target::fqdn + } + else { + include nagios::target + } + nagios::service::ping { "$fqdn": } + } + + } + +} -- cgit v1.2.3