add check_ldaps

This commit is contained in:
Jan Wagner 2008-03-09 01:02:59 +00:00
parent 4f3f873aa3
commit 16dc82c697
2 changed files with 18 additions and 4 deletions

2
debian/changelog vendored
View file

@ -3,6 +3,8 @@ nagios-plugins (1.4.11-3) UNRELEASED; urgency=low
* remove unneeded debhelper scripts from rules
* remove senseless comments from patches
* add missing descriptions to patches
* add missing command definition for check_ldaps, thanks Michael Renner
<robe@amd.co.at> for reporting it (Closes: #407310)
-- Jan Wagner <waja@cyconet.org> Fri, 07 Mar 2008 17:37:49 +0100

View file

@ -4,12 +4,24 @@ define command{
command_line /usr/lib/nagios/plugins/check_ldap -H $HOSTADDRESS$ -b $ARG1$
}
# 'check_ldaps' command definition
define command{
command_name check_ldaps
command_line /usr/lib/nagios/plugins/check_ldaps -H $HOSTADDRESS$ -b $ARG1$
}
####
# use these checks, if you want to test IPv4 connectivity on IPv6 enabled systems
####
# 'check_ldap_4' command definition
define command{
command_name check_ldap_4
command_line /usr/lib/nagios/plugins/check_ldap -H $HOSTADDRESS$ -b $ARG1$ -4
}
command_name check_ldap_4
command_line /usr/lib/nagios/plugins/check_ldap -H $HOSTADDRESS$ -b $ARG1$ -4
}
# 'check_ldaps_4' command definition
define command{
command_name check_ldaps_4
command_line /usr/lib/nagios/plugins/check_ldaps -H $HOSTADDRESS$ -b $ARG1$ -4
}