summaryrefslogtreecommitdiff
path: root/mail/spamd/files/spamd.sh.sample
diff options
context:
space:
mode:
Diffstat (limited to 'mail/spamd/files/spamd.sh.sample')
-rw-r--r--mail/spamd/files/spamd.sh.sample40
1 files changed, 0 insertions, 40 deletions
diff --git a/mail/spamd/files/spamd.sh.sample b/mail/spamd/files/spamd.sh.sample
deleted file mode 100644
index d393e1d00385..000000000000
--- a/mail/spamd/files/spamd.sh.sample
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/mail/spamd/files/Attic/spamd.sh.sample,v 1.1 2003-09-29 23:01:21 edwin Exp $
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- echo "Please use the complete pathname." >&2
- exit 1
-fi
-
-if [ -z "${source_rc_confs_defined}" ]; then
- if [ -r /etc/defaults/rc.conf ]; then
- . /etc/defaults/rc.conf
- source_rc_confs
- elif [ -r /etc/rc.conf ]; then
- . /etc/rc.conf
- fi
-fi
-
-case "$1" in
-start)
- case "${spamd_enable}" in
- [Yy][Ee][Ss])
- echo -n ' spamd'
- ${PREFIX}/libexec/spamd ${spamd_flags}
- if [ -x ${PREFIX}/sbin/spamd-setup ]; then
- ${PREFIX}/sbin/spamd-setup
- fi
- ;;
- esac
- ;;
-stop)
- killall spamd
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0