Mercurial > sm-archive
changeset 5:b8a3b366635a
initial version
author | carl |
---|---|
date | Fri, 10 Mar 2006 12:06:40 -0800 |
parents | 311e331f1bab |
children | 0b03e7656abf |
files | sm-archive.rc |
diffstat | 1 files changed, 18 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/sm-archive.rc Fri Mar 10 11:52:38 2006 -0800 +++ b/sm-archive.rc Fri Mar 10 12:06:40 2006 -0800 @@ -1,12 +1,12 @@ # -- bash header installed by automake -- # -# sm-archive This script controls the sm-archive milter daemon. +# smarchive This script controls the smarchive 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 +# description: smarchive allows adding recipients to mail passing thru this milter +# processname: smarchive +# pidfile: /var/run/smarchive.pid # Source function library. # . /etc/rc.d/init.d/functions @@ -19,35 +19,35 @@ case "$1" in start) # Start daemons. - echo -n "Starting sm-archive-milter: " - if [ ! -f /var/lock/subsys/sm-archive ]; then - cd SYSCONFDIR # conf file is here - SBINDIR/sm-archive -d 10 -p local:/var/run/sm-archive/sm-archive.sock + echo -n "Starting smarchive-milter: " + if [ ! -f /var/lock/subsys/smarchive ]; then + cd SYSCONFDIR/sm-archive # conf file is here + SBINDIR/smarchive -d 10 -p local:/var/run/smarchive/smarchive.sock RETVAL=$? - pid=`pidof -s SBINDIR/sm-archive` + pid=`pidof -s SBINDIR/smarchive` if [ $pid ] then - success "Starting sm-archive milter:" - touch /var/lock/subsys/sm-archive + success "Starting smarchive milter:" + touch /var/lock/subsys/smarchive echo else - failure "Starting sm-archive milter:" + failure "Starting smarchive milter:" echo fi else echo -n "already running! " - failure "sm-archive milter already running!" + failure "smarchive milter already running!" echo fi ;; stop) # Stop daemons. - echo -n "Shutting down sm-archive-milter: " - killproc sm-archive + echo -n "Shutting down smarchive-milter: " + killproc smarchive RETVAL=$? echo - [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sm-archive + [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/smarchive ;; restart|reload) $0 stop @@ -55,11 +55,11 @@ RETVAL=$? ;; status) - status sm-archive + status smarchive RETVAL=$? ;; *) - echo "Usage: sm-archive {start|stop|restart|status}" + echo "Usage: smarchive {start|stop|restart|status}" exit 1 esac exit $RETVAL