#!/bin/sh # # exim This shell script takes care of starting and stopping # Exim. # # chkconfig: 2345 80 30 # # description: Exim is a Mail Transport Agent, which is the program \ # that moves mail from one machine to another. # # processname: exim # config: /etc/exim.cf # pidfile: /var/run/exim.pid # Source function library . /etc/rc.d/init.d/functions # Get network config . /etc/sysconfig/network # Get service config if [ -f /etc/sysconfig/exim ]; then . /etc/sysconfig/exim else DAEMON=yes QUEUE=1h fi # Check that networking is up. [ "${NETWORKING}" = "no" ] && echo "Error: Networking is down" && exit 0 # See how we were called. case "$1" in start) # Check if the service is already running? if [ ! -f /var/lock/subsys/exim ]; then show Starting exim daemon exim $([ "$DAEMON" = yes ] && echo -bd) \ $([ -n "$QUEUE" ] && echo -q$QUEUE) else echo "Exim already is running" fi touch /var/lock/subsys/exim ;; stop) # Stop daemons. show Shutting down exim: killproc exim rm -f /var/lock/subsys/exim ;; restart|reload) $0 stop $0 start ;; status) status exim ;; *) echo "Usage: $0 {start|stop|staus|restart|reload}" exit 1 esac exit 0