File: test.cfg

package info (click to toggle)
libnet-ldap-perl 1%3A0.4400-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,484 kB
  • sloc: perl: 13,645; sh: 16; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 919 bytes parent folder | download | duplicates (2)
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
34
# 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;