s4-dbcheck: support the 'none' option for prompts
[abartlet/samba.git/.git] / source4 / lib / ldb / tests / start_slapd.sh
1 #!/bin/sh
2
3 if [ -z "$LDBDIR" ]; then
4     LDBDIR=`dirname $0`/..
5     export LDBDIR
6 fi
7
8 mkdir -p $LDBDIR/tests/tmp/db
9
10 # running slapd in the background (with &) means it stays in the same process group, so it can be
11 # killed by timelimit
12 slapd -d0 -f $LDBDIR/tests/slapd.conf -h "`$LDBDIR/tests/ldapi_url.sh`" $* &
13
14 sleep 2