forked from perl-ldap/perl-ldap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.cfg
34 lines (25 loc) · 919 Bytes
/
test.cfg
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
32
33
# Currently test that require a server are only implemented to work
# with slapd from the OpenLDAP project. Edit this file so the tests
# can find the executable and know what type of server it is
# Set this to the path to where you have slapd
$SERVER_EXE = "<path to ldap server executable>";
# This should be one of
# openldap1
# openldap2
# openldap2[+ssl][+ipc][+sasl]
$SERVER_TYPE = "openldap2";
# $HOST = "localhost";
# If you are using openldap 2.1 then you will need to change this to point
# to your installation schema dir (eg /usr/local/etc/openldap/schema)
$SCHEMA_DIR = "";
# for OpenLDAP 2.4.11
# $SLAPD_DB = 'bdb'; # default is ldbm
# $SCHEMA_CHECK = 0; # default is to check but 2.4.11 does not like it
$EXTERNAL_TESTS = 0;
# %sortctrl = (
# host => '<ldap server hostname>',
# base => '<search base>',
# filter => '<search filter>',
# order => '<sort attribute name>',
# );
1;