ldap test, inspired from the samba ldb tests

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20220 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-02-15 00:11:18 +00:00
parent 393f98a743
commit 3cb07032b9
8 changed files with 292 additions and 0 deletions

18
tests/ldap/slapd-stop Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
# $Id$
echo stoping slapd
# kill of old slapd
if [ -f slapd.pid ]; then
kill `cat slapd.pid`
sleep 5
fi
if [ -f slapd.pid ]; then
kill -9 `cat slapd.pid`
rm -f slapd.pid
sleep 5
fi
exit 0