#! /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. # --S-LICENSE-- # $Revision: 1.79 $ # @configure_input@ exec 1>&2 /dev/null; then DCCM_ARGS="'-l$DCCM_LOGDIR' $DCCM_ARGS" else DCCM_ARGS="-l$DCCM_LOGDIR $DCCM_ARGS" fi fi CKS="$REP_ARGS" if test -n "$DCCM_LOG_AT$DCCM_REJECT_AT"; then for CK in ${DCCM_CKSUMS:=CMN} $DCCM_XTRA_CKSUMS; do CKS="$CKS -t$CK,$DCCM_LOG_AT,$DCCM_REJECT_AT" done fi if test -n "$DCCM_WHITECLNT"; then CKS="$CKS -w$DCCM_WHITECLNT" fi DCCM_ARGS="$CKS $DNSBL_ARGS $DCC_LOG_ARGS $DCCM_ARGS" # stop an existing dccm # signal the process group because on Linux systems it does not work # to signal the main process. See `man sigwait` on a Linux system. PID=`cat $DCC_RUNDIR/$ARGV0.pid 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 `kill -15 $PID 2>/dev/null`; then if test -z "$QUIET"; then if test $CNT -eq 0; then echo " stopping dccm PID $PID " | tr -d '\012' else echo "." | tr -d '\012' fi fi sleep 1 CNT=`expr $CNT + 1` else break fi done kill -9 $PID 2>/dev/null if test $CNT -ne 0 -a -z "$QUIET"; 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 -n "$DCCUID"; then chown $DCCUID "$DCC_RUNDIR" if test -d "$DCC_HOMEDIR"; then chown "$DCCUID" "$DCC_HOMEDIR" fi if test -n "$DCCM_LOGDIR" -a -d "$DCCM_LOGDIR"; then chown "$DCCUID" "$DCCM_LOGDIR" fi 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 the dcc user does not have one if test -n "$DCCUID" -a X"$DCCUID" != X"$USER"; then if @DCC_SU@ "$DCCUID" -c date >/dev/null 2>&1; then @DCC_SU@ "$DCCUID" -c "$DCC_LIBEXEC/$ARGV0 $DCCM_ARGS" exit fi DCCM_ARGS="-I$DCCUID $DCCM_ARGS" fi eval $DCC_LIBEXEC/$ARGV0 $DCCM_ARGS