Mercurial > sm-archive
view sm-archive.rc @ 15:72a94c46c2be stable-1-5
fix bash header
author | carl |
---|---|
date | Sat, 25 Aug 2007 11:37:34 -0700 |
parents | 0b03e7656abf |
children |
line wrap: on
line source
# -- bash header installed by automake -- # # sm-archive This script controls the sm-archive milter daemon. # # # chkconfig: 2345 79 31 # description: sm-archive allows adding recipients to mail passing thru this milter # processname: sm-archive # pidfile: /var/run/sm-archive.pid # Source function library. # . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network RETVAL=0 # See how we were called. case "$1" in start) # Start daemons. echo -n "Starting sm-archive-milter: " if [ ! -f /var/lock/subsys/smarchive ]; then cd SYSCONFDIR/sm-archive # conf file is here SBINDIR/smarchive -d 10 -p local:/var/run/sm-archive/sm-archive.sock RETVAL=$? pid=`pidof -s SBINDIR/smarchive` if [ $pid ] then success "Starting sm-archive milter:" touch /var/lock/subsys/smarchive echo else failure "Starting sm-archive milter:" echo fi else echo -n "already running! " failure "sm-archive milter already running!" echo fi ;; stop) # Stop daemons. echo -n "Shutting down sm-archive-milter: " killproc smarchive RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/smarchive ;; restart|reload) $0 stop $0 start RETVAL=$? ;; status) status smarchive RETVAL=$? ;; *) echo "Usage: sm-archive {start|stop|restart|status}" exit 1 esac exit $RETVAL # $Id$