#! /bin/sh # start dccm # This script assumes that it is being run by root or the DCC user, probably # while the system is starting. It should be run before sendmail is started # to avoid complaints from sendmail about the socket not existing. # See the misc/rcDCC script. # Copyright (c) 2005 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.31-1.65 $Revision$ # Generated automatically from start-dccm.in by configure. exec 1>&2 /dev/null` if test -n "$PID"; then if `kill -15 $PID 2>/dev/null`; then CNT=0 while test $CNT -lt 6; do if `/bin/kill -15 $PID 2>/dev/null`; then if test $CNT -eq 0; then echo " stopping dccm PID $PID " | tr -d '\012' else echo "." | tr -d '\012' fi sleep 1 CNT=`expr $CNT + 1` else break fi done /bin/kill -9 $PID 2>/dev/null if test $CNT -ne 0; then echo fi fi fi # assume unset DCCD_ENABLE is "on" for upward compatibility case "$DCCM_ENABLE" in [oO][fF][fF]) exit 0;; esac if test ! -x $DCC_LIBEXEC/dccm; then eval $DCC_LOGGER "cannot start dccm because it has not been installed" exit 1 fi if test ! -d $DCC_RUNDIR; then mkdir $DCC_RUNDIR fi if test "$ARGV0" != dccm -a ! -s $DCC_LIBEXEC/$ARGV0; then ln -s dccm $DCC_LIBEXEC/$ARGV0 fi # first try to use `su -` to set limits # fall back to -I for systems where su requires a valid shell in # /etc/passwd but where the dcc user does not have one if test -n "$DCCUID" -a X"$DCCUID" != X"$USER"; then if test -d $DCC_RUNDIR; then chown $DCCUID $DCC_RUNDIR fi if su - $DCCUID -c date >/dev/null 2>&1; then su - $DCCUID -c "$DCC_LIBEXEC/$ARGV0 $DCCM_ARGS" exit fi DCCM_ARGS="-I$DCCUID $DCCM_ARGS" fi eval $DCC_LIBEXEC/$ARGV0 $DCCM_ARGS