summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests/kill_slapd.sh
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-10 22:45:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:13 -0500
commitd939ff7beecd510cfd94687c6666c398f7adb2b4 (patch)
tree65c78e8e334d31fac526352ab968b167047b3144 /source4/lib/ldb/tests/kill_slapd.sh
parentdc221581f0a9020665e09940c2f07b9562a387b7 (diff)
downloadsamba-d939ff7beecd510cfd94687c6666c398f7adb2b4.tar.gz
samba-d939ff7beecd510cfd94687c6666c398f7adb2b4.tar.bz2
samba-d939ff7beecd510cfd94687c6666c398f7adb2b4.zip
r18346: make sure we kill off the slapd process
(This used to be commit 0e1d4be23ab807b17959e09dffbaf9c8c8dd048e)
Diffstat (limited to 'source4/lib/ldb/tests/kill_slapd.sh')
-rwxr-xr-xsource4/lib/ldb/tests/kill_slapd.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/source4/lib/ldb/tests/kill_slapd.sh b/source4/lib/ldb/tests/kill_slapd.sh
new file mode 100755
index 0000000000..91beb10814
--- /dev/null
+++ b/source4/lib/ldb/tests/kill_slapd.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+if [ -z "$LDBDIR" ]; then
+ LDBDIR=`dirname $0`/..
+ export LDBDIR
+fi
+
+if [ -f tests/tmp/slapd.pid ]; then
+ echo "killing slapd process `cat tests/tmp/slapd.pid`"
+ kill -9 `cat tests/tmp/slapd.pid`
+ rm -f tests/tmp/slapd.pid
+fi