From 16dc82c697f4898ebad146707f8d124a3c24181e Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Sun, 9 Mar 2008 01:02:59 +0000 Subject: [PATCH] add check_ldaps --- debian/changelog | 4 +++- debian/pluginconfig/ldap.cfg | 18 +++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 925fe69..7aef609 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,9 @@ 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 descriptions to patches + * add missing command definition for check_ldaps, thanks Michael Renner + for reporting it (Closes: #407310) -- Jan Wagner Fri, 07 Mar 2008 17:37:49 +0100 diff --git a/debian/pluginconfig/ldap.cfg b/debian/pluginconfig/ldap.cfg index d0a560f..3d84646 100644 --- a/debian/pluginconfig/ldap.cfg +++ b/debian/pluginconfig/ldap.cfg @@ -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 + } \ No newline at end of file