From f3758c615c80219b924c90fb504847491b5b4449 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Thu, 22 Dec 2011 17:46:39 +0000 Subject: Add forgotten nagios plugin check_ldap_root to package. --- nagios-plugins/check_ldap_root | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 nagios-plugins/check_ldap_root (limited to 'nagios-plugins/check_ldap_root') diff --git a/nagios-plugins/check_ldap_root b/nagios-plugins/check_ldap_root new file mode 100755 index 0000000..a4ce47f --- /dev/null +++ b/nagios-plugins/check_ldap_root @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Make sure the LDAP server is able to respond by searching for the +# root DSE. + +set -e + +PATH=/bin:/sbin:/usr/sbin:/usr/bin + +if [ -z "$1" ] ; then + echo "No LDAP server specified on command line" + exit 1 +fi + +ldapserver=$1 +shift + +if ldapsearch -l 3 -LLL -h $ldapserver -x -b '' -s base > /dev/null 2>&1 ; then + echo "OK - Searching for LDAP root DSE worked on $ldapserver" + exit 0 +else + echo "Failed to fetch root DSE from LDAP server $ldapserver." + exit 1 +fi -- cgit v1.2.3