1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/mail/anubis/files/anubis.sh
Ying-Chieh Liao 7bd6710415 add anubis 3.3.0
An outgoing mail processor
2002-07-31 18:52:14 +00:00

16 lines
217 B
Bash

#!/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