diff options
author | Doug Barton <dougb@FreeBSD.org> | 2004-02-15 01:24:49 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2004-02-15 01:24:49 +0000 |
commit | aa89e0730ed13b61edb5a54a79f7ea168b8092e8 (patch) | |
tree | 73eeaea3866b010ea9d0a6e11573269d25bae384 /mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh | |
parent | Gratuitous overhaul: add distfile size, get rid of plist file. (diff) |
Remove the p5-Mail-SpamAssassin-snapshot port. At the time it was created
it served a useful purpose, but this is no longer the case, and it's
still a cause of needless confusion.
Notes
Notes:
svn path=/head/; revision=100959
Diffstat (limited to 'mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh')
-rw-r--r-- | mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh b/mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh deleted file mode 100644 index b56cddfaadb5..000000000000 --- a/mail/p5-Mail-SpamAssassin-snapshot/files/spamd.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/bin/spamd ] && ${PREFIX}/bin/spamd -a -c -d && echo -n ' spamd' - ;; -stop) - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 |