diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2003-08-14 04:07:08 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2003-08-14 04:07:08 +0000 |
commit | 4e6d60bceb45b9cbb191d1a6b82e16c65371a4b8 (patch) | |
tree | ff2cea046b04623e6917a3df22238fb37b0a6f5a /net/openldap20/files/slurpd.sh | |
parent | Split openldap2? into -client and -server. (diff) |
Remove original openldap2[012] ports.
Notes
Notes:
svn path=/head/; revision=86913
Diffstat (limited to 'net/openldap20/files/slurpd.sh')
-rw-r--r-- | net/openldap20/files/slurpd.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/net/openldap20/files/slurpd.sh b/net/openldap20/files/slurpd.sh deleted file mode 100644 index 0eafcbeebcd7..000000000000 --- a/net/openldap20/files/slurpd.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -slurpd_program=@@PREFIX@@/libexec/slurpd - -slurpd_args= - -case "$1" in -start) - if [ -x ${slurpd_program} ]; then - echo -n ' slurpd' - ${slurpd_program} ${slurpd_args} - fi - ;; -stop) - if ! killall `basename ${slurpd_program}`; then - echo ' slurpd: not running' - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 |