mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
22 lines
279 B
Bash
22 lines
279 B
Bash
|
# $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
|
||
|
|
||
|
WAIT=0
|
||
|
if test $# -ge 1 ; then
|
||
|
WAIT=1; shift
|
||
|
fi
|