core/exim/exim

26 lines
293 B
Plaintext
Raw Normal View History

#!/bin/sh
#
# /etc/rc.d/exim: start/stop exim daemon
#
case $1 in
start)
/usr/sbin/exim -bd -q15m
;;
stop)
killall -q /usr/sbin/exim
;;
restart)
$0 stop
sleep 2
$0 start
;;
reload)
2008-02-18 17:23:42 +01:00
kill -s HUP $(pidof exim)
;;
*)
echo "usage: $0 [start|stop|restart|reload]"
;;
esac
# End of file