#!/bin/sh

if [ -f /etc/cron.daily/sa_update ]
then
    N=$(find /var/lib/spamassassin/3.* -type f -newer /service/spamd/supervise/pid)
    if test -n "$N"
    then
        sv t /service/spamd
    fi
fi
