nagios: Added IPP and LPD service target support.

This commit is contained in:
Timo Mkinen 2013-09-18 12:33:24 +03:00
parent ea4d4d37cd
commit f7f0f2fb36

View file

@ -111,6 +111,18 @@ class nagios::target::imaps inherits nagios::target {
}
# Configure ipp service target.
#
class nagios::target::ipp inherits nagios::target {
@@nagios::service { "${::homename}_ipp":
command => "check_http!-p 631",
description => "IPP",
}
}
# Configure ldap service target.
#
class nagios::target::ldap inherits nagios::target {
@ -135,6 +147,18 @@ class nagios::target::ldaps inherits nagios::target {
}
# Configure lpd service target.
#
class nagios::target::lpd inherits nagios::target {
@@nagios::service { "${::homename}_lpd":
command => "check_tcp!515",
description => "LPD",
}
}
# Configure pop3 service target.
#
class nagios::target::pop3s inherits nagios::target {