openldap/tests/scripts/args.sh

22 lines
279 B
Bash
Raw Normal View History

# $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