nagios: Added IPP and LPD service target support.
This commit is contained in:
parent
ea4d4d37cd
commit
f7f0f2fb36
1 changed files with 24 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue