mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
16 lines
196 B
Bash
Executable file
16 lines
196 B
Bash
Executable file
# $OpenLDAP$
|
|
|
|
BACKEND=bdb
|
|
if test $# -ge 1 ; then
|
|
BACKEND=$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
|