diff options
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 |