mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
d113166475
1. Glueing patch for proxy cache 2. test script update to avoid schema checking voilations (attributes set) 3. configuration patch for proxy cache
27 lines
350 B
Bash
Executable File
27 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
|