mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
1. Glueing patch for proxy cache 2. test script update to avoid schema checking voilations (attributes set) 3. configuration patch for proxy cache
26 lines
350 B
Bash
Executable file
26 lines
350 B
Bash
Executable file
# $OpenLDAP$
|
|
|
|
BACKEND=bdb
|
|
if test $# -ge 1 ; then
|
|
BACKEND=$1; shift
|
|
fi
|
|
|
|
BACKENDTYPE=yes
|
|
if test $# -ge 1 ; then
|
|
BACKENDTYPE=$1; shift
|
|
fi
|
|
|
|
MONITORDB=no
|
|
if test $# -ge 1 ; then
|
|
MONITORDB=$1; shift
|
|
fi
|
|
|
|
PROXYCACHE=no
|
|
if test $# -ge 1 ; then
|
|
PROXYCACHE=$1; shift
|
|
fi
|
|
|
|
WAIT=0
|
|
if test $# -ge 1 ; then
|
|
WAIT=1; shift
|
|
fi
|