mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
- if test back-ldbm then - run the provider with back-bdb when back-bdb is configured - run the provider with back-hdb when back-hdb is configured - exit when neither is configured
31 lines
410 B
Bash
Executable file
31 lines
410 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
|
|
|
|
SYNCREPL=no
|
|
if test $# -ge 1 ; then
|
|
SYNCREPL=$1; shift
|
|
fi
|
|
|
|
WAIT=0
|
|
if test $# -ge 1 ; then
|
|
WAIT=1; shift
|
|
fi
|