aboutsummaryrefslogtreecommitdiff
path: root/net/openldap22/files/slurpd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net/openldap22/files/slurpd.sh')
-rw-r--r--net/openldap22/files/slurpd.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/net/openldap22/files/slurpd.sh b/net/openldap22/files/slurpd.sh
deleted file mode 100644
index 9f347253a5d6..000000000000
--- a/net/openldap22/files/slurpd.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-slurpd=@@PREFIX@@/libexec/slurpd
-pidfile=/var/run/ldap/slurpd.pid
-
-case "$1" in
-start)
- if [ -x $slurpd ]; then
- echo -n ' slurpd'
- $slurpd &
- echo $! > $pidfile
- fi
- ;;
-stop)
- pids=`ps xa | awk '/slurpd/{ print $1 }'`
- for pid in $pids; do
- kill $pid
- echo -n " slurpd($pid)"
- done
- ;;
-restart)
- $0 stop
- $0 start
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0