#!/bin/sh # chkconfig: 2345 40 80 # description: rcDCC is a startup script for DCC \ # http://www.rhyolite.com/anti-spam/dcc # processname: dccd # processname: dccm # processname: dccifd # start or stop dccd, dccifd, and dccm for Solaris, System V, IRIX, # Redhat Linux, or FreeBSD # dccm must be started before sendmail and stopped after sendmail to avoid # complaints from sendmail # dccd must be should before the first mail message arrives # Thus on some Solaris systems, this script can be installed as # rc0.d/K37DCC rc1.d/K37DCC rc2.d/S88DCC rcS.d/K37DCC # On some Linux systems it can be installed as rc.d/init.d/DCC and linked # to rc.d/rc0.d/K31DCC rc.d/rc1.d/K31DCC rc.d/rc2.d/S80DCC rc.d/rc3.d/S80DCC # rc.d/rc4.d/S80DCC rc.d/rc5.d/S80DCC and rc.d/rc6.d/K31DCC # On older FreeBSD systems a line like # /var/dcc/libexec/rcDCC start # can be added to /etc/rc just before sendmail is started and a line like # /var/dcc/libexec/rcDCC stop # can be added to /etc/rc.shutdown. # On 4.* FreeBSD systems, make a symbolic link from this file. # to /etc/rc.d/rcDCC.sh # On FreeBSD 5.* and 6.* systems, link this file to # /usr/local/etc/rc.d/rcDCC.sh # Copyright (c) 2006 by Rhyolite Software, LLC # # This agreement is not applicable to any entity which sells anti-spam # solutions to others or provides an anti-spam solution as part of a # security solution sold to other entities, or to a private network # which employs the DCC or uses data provided by operation of the DCC # but does not provide corresponding data to other users. # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # Parties not eligible to receive a license under this agreement can # obtain a commercial license to use DCC and permission to use # U.S. Patent 6,330,590 by contacting Commtouch at http://www.commtouch.com/ # or by email to nospam@commtouch.com. # # A commercial license would be for Distributed Checksum and Reputation # Clearinghouse software. That software includes additional features. This # free license for Distributed ChecksumClearinghouse Software does not in any # way grant permision to use Distributed Checksum and Reputation Clearinghouse # software # # THE SOFTWARE IS PROVIDED "AS IS" AND RHYOLITE SOFTWARE, LLC DISCLAIMS ALL # WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RHYOLITE SOFTWARE, LLC # BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, # ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS # SOFTWARE. # Rhyolite Software DCC 1.3.50-1.30 $Revision$ # Generated automatically from rcDCC.in by configure. DCC_HOMEDIR=/usr/local/dcc DCC_LIBEXEC=/usr/local/dcc/libexec # in case dcc_conf has disappeared . $DCC_HOMEDIR/dcc_conf if test -z "$DCC_RUNDIR" -a -n "$DCCM_RUNDIR"; then # deal with old dcc_conf files DCC_RUNDIR="$DCCM_RUNDIR" fi DEBUG= if test "X$1" = "X-x"; then set -x DEBUG=-x shift fi case "$1" in start) $DCC_LIBEXEC/start-dccd $DEBUG $DCC_LIBEXEC/start-grey $DEBUG $DCC_LIBEXEC/start-dccm $DEBUG $DCC_LIBEXEC/start-dccifd $DEBUG ;; stop) # stop dccm and dccifd for PID in `cat $DCC_RUNDIR/dcc*.pid $DCC_HOMEDIR/dcc*.pid \ 2>/dev/null`; do # signal the process group because on Linux systems does not work # to signal the main process. See `man sigwait` on a Linux system. /bin/kill -15 $PID done # stop dccd $DCC_LIBEXEC/stop-dccd -S $DEBUG $DCC_LIBEXEC/stop-dccd -G -S $DEBUG ;; restart|reload) # for Linux $0 $DEBUG start exit $? ;; probe) # for Linux echo $DEBUG restart ;; *) echo "Usage: $0 {start|stop|restart|reload|probe}" exit 1 ;; esac exit 0