blob: bec88fc2229ac1a93edd672ae537fe1813454873 [file] [log] [blame]
#!/bin/sh
#
# Start/stop exim
#
PIDFILE=/var/lock/exim/exim-daemon.pid
case "$1" in
start)
echo "Starting exim..."
start-stop-daemon -S -x exim -- -bd
;;
stop)
printf "Stopping exim..."
start-stop-daemon -K -o -p $PIDFILE
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?