freebsd-ports/mail/nullmailer/files/nullmail.sh
Clive Lin ca240d515f * Upgrade to 1.00RC7
Miscellous fixes:
    * Make sure home directory of nullmail user is correct.
      (http://www.freebsd.org/cgi/mid.cgi?db=mid&id=20030207081144.GB52029@fatpipi.cirx.org)
    * Typo fixed in pkg-message.
      (Submitter: Thierry Thomas <thierry@pompo.net>)
    * Better startup script.
      (Submitter: lewiz <purple@lewiz.info>)
2003-04-13 13:22:28 +00:00

47 lines
951 B
Bash

#!/bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
NULLMAILUSER=nullmail
PIDFILE=/var/run/nullmailer.pid
AWK=/usr/bin/awk
CAT=/bin/cat
GREP=/usr/bin/grep
PS=/bin/ps
RM=/bin/rm
LOGGER=/usr/bin/logger
KILL=/bin/kill
KILLALL=/usr/bin/killall
PRIORITY=local5.info
TAG=${NULLMAILUSER}
case "$1" in
start)
echo -n ' nullmailer'
if [ ! -r ${PIDFILE} ] ; then
[ -x ${PREFIX}/sbin/nullmailer-send ] && su -l ${NULLMAILUSER} -c "${PREFIX}/sbin/nullmailer-send 2>&1 | ${LOGGER} -i -p ${PRIORITY} -t ${TAG} &"
JUNK=`${PS} -ax`
PID=`${PS} awx | ${GREP} -v awk | ${AWK} '/nullmailer-send/ {print $1}'`
echo $PID > ${PIDFILE}
else
echo ' already running'
fi
;;
stop)
echo -n ' nullmailer'
if [ -r ${PIDFILE} ] ; then
${KILL} `${CAT} ${PIDFILE}` > /dev/null
${RM} -f ${PIDFILE}
fi
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0