mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
61452ee9c7
parameter too difficult to use.
17 lines
196 B
Bash
Executable File
17 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
|