freebsd-ports/mail/popa3d/files/popa3d.sh
Dirk Meyer bb8719d37f - use DOCSDIR
- new option STANDALONE_POP3
Submitted by:   osa

- USE_REINPLACE for all options
- cleanup targets
Submitted by:   dinoex
2003-12-04 03:28:54 +00:00

16 lines
223 B
Bash

#!/bin/sh
case "$1" in
start)
[ -x %%PREFIX%%/libexec/popa3d ] && %%PREFIX%%/libexec/popa3d -D && echo -n ' popa3d'
;;
stop)
killall popa3d
;;
*)
echo "Usage: ${0##*/}: { start | stop }" >&2
exit 64
;;
esac
exit 0