Mercurial > sm-archive
view sm-archive.rc.in @ 19:b24369330483 stable-1-0-7
Fedora 9 compile and const correctness.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 12 Jun 2008 18:17:33 -0700 |
parents | 8ebecad6530f |
children |
line wrap: on
line source
#!@BASH@ # # 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