nagios: Added support for checking SSL enabled IMAP service.

This commit is contained in:
Timo Mkinen 2013-05-06 13:57:56 +03:00
parent 4e078fedd0
commit 19df011191

View file

@ -70,6 +70,18 @@ class nagios::target::https inherits nagios::target {
}
# Configure imaps service target.
#
class nagios::target::imaps inherits nagios::target {
@@nagios::service { "${::homename}_imaps":
command => "check_imap!--ssl -p 993",
description => "IMAPS",
}
}
# Configure smtp service target.
#
class nagios::target::smtp inherits nagios::target {