CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libarchive: updated to 3.0.4
[crossrootfs.git] / exim / exim
CommitLineData
ee6b760f
JB
1#!/bin/sh
2#
3# /etc/rc.d/exim: start/stop exim daemon
4#
5
6case $1 in
7start)
8 /usr/sbin/exim -bd -q15m
9 ;;
10stop)
11 killall -q /usr/sbin/exim
12 ;;
13restart)
14 $0 stop
15 sleep 2
16 $0 start
17 ;;
18reload)
19 kill -s HUP $(pidof exim)
20 ;;
21*)
22 echo "usage: $0 [start|stop|restart|reload]"
23 ;;
24esac
25
26# End of file