diff options
author | Dennis Herrmann <dhn@FreeBSD.org> | 2011-02-14 21:38:40 +0000 |
---|---|---|
committer | Dennis Herrmann <dhn@FreeBSD.org> | 2011-02-14 21:38:40 +0000 |
commit | 899eaa08bc042c56ebd56b2b235588976bde76ef (patch) | |
tree | 973e0cfe2fea80a547d38f38da40fcc55657b92d /mail/anubis/files/anubis.sh | |
parent | - Update to 0.85 (diff) |
- Update to 4.1.1
- Pass maintainership to submitter
- Remove MD5 checksum
- Mark MAKE_JOBS_UNSAFE
- Add LICENSE
PR: ports/154641
Submitted by: Jason E. Hale <bsdkaffee@gmail.com>
Diffstat (limited to 'mail/anubis/files/anubis.sh')
-rw-r--r-- | mail/anubis/files/anubis.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mail/anubis/files/anubis.sh b/mail/anubis/files/anubis.sh deleted file mode 100644 index 4404db4cf427..000000000000 --- a/mail/anubis/files/anubis.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - [ -x %%PREFIX%%/sbin/anubis ] && %%PREFIX%%/sbin/anubis > /dev/null && echo -n ' anubis' - ;; -stop) - killall anubis - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 |