view sm-archive.rc.in @ 28:946961e534b4 default tip

Added tag stable-1-0-10 for changeset 9298f8b00db2
author Carl Byington <carl@five-ten-sg.com>
date Thu, 24 May 2018 10:38:44 -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