1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-04 08:23:50 +03:00
Files
samba-mirror/source/lib/ldb/tests/init_slapd.sh
Simo Sorce 0d58b1dc5a r3757: Some fixes for ldb_ldap
Now we pass also the test-ldap tests :-)
2007-10-10 13:05:51 -05:00

14 lines
230 B
Bash
Executable File

#!/bin/sh
rm -rf tests/tmp/db
mkdir -p tests/tmp/db
if pidof slapd > /dev/null; then
killall slapd
fi
sleep 2
if pidof slapd > /dev/null; then
killall -9 slapd
fi
slapadd -f tests/slapd.conf < tests/init.ldif || exit 1