#!/bin/sh # # /etc/rc.d/services/exim.service - exim(1) service file # case $1 in start) /usr/sbin/exim -bd -q15m ;; stop) killall -q /usr/sbin/exim ;; reload) kill -s SIGHUP `pidof exim` ;; *) echo "usage: $0 start|stop" ;; esac # EOF