File: check_ldap_root

package info (click to toggle)
sitesummary 0.1.60
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 584 kB
  • sloc: perl: 1,929; sh: 800; makefile: 86
file content (31 lines) | stat: -rwxr-xr-x 627 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/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 type ldapsearch > /dev/null 2>&1 ; then
    :
else
    echo "Missing the ldapsearch tool, unable to check LDAP server."
    exit 2
fi

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