summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/tests/ldap/slapd-stop
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/heimdal/tests/ldap/slapd-stop')
-rw-r--r--crypto/heimdal/tests/ldap/slapd-stop18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/heimdal/tests/ldap/slapd-stop b/crypto/heimdal/tests/ldap/slapd-stop
new file mode 100644
index 0000000..7c37c73
--- /dev/null
+++ b/crypto/heimdal/tests/ldap/slapd-stop
@@ -0,0 +1,18 @@
+#!/bin/sh
+# $Id: slapd-stop 20220 2007-02-15 00:11:18Z lha $
+
+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
+
OpenPOWER on IntegriCloud