I've created the following setup to run clamav-milter in supervised mode on
gentoo (amd64):

# cat /etc/init.d/daemon-clamav-milter
#!/sbin/runscript
depend() {
    need net clamd
    before sendmail
    }

start() {
    ebegin "Starting clamav-milter (supervised)"
    /usr/local/bin/daemon -F
/var/run/clamd/daemon-clamav-milter.pid --name=clamav-milter --respawn --use
r=clamav \
-X "/usr/sbin/clamav-milter ${CLAMAV_MILTER_OPTS} \
--max-children=${MAX_CHILDREN} --quarantine-dir=${QUARANTINE_DIR} ${SOCKET}"
    eend $?
    }

stop() {
    ebegin "Stopping clamav-milter (supervised)"
    start-stop-daemon --oknodo -K -q -p
/var/run/clamd/daemon-clamav-milter.pid
    eend $? "Failed to stop clamav-milter (supervised)"
    }

restart() {
    svc_stop
    sleep 5
    svc_start
    }

# cat /etc/conf.d/daemon-clamav-milter
# Config file for /etc/init.d/clamav-milter

CLAMAV_MILTER_OPTS="-lo -q"
MAX_CHILDREN="2"
QUARANTINE_DIR="/home/clam"
SOCKET="/var/run/clamd/clmilter.sock"
OPTIONS="-ol -U /var/clam"

I have set "Foreground" in /etc/clamd.conf.

The script starts up fine, but when I try to stop it, all of the processes
are still there.  I can only get rid of them by manually killing each
process.

Any clues as to how I can shut this down properly?





-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Clamav-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to