Sorry, I should have looked at the email more closely.
My mistake, I'll re-roll the rpm with the correct cron sa-update.
Thanks for catching this, Fabian.
EricB
On 5/3/2015 11:54 AM, Fox Hound wrote:
> Contents of sa-update cron script:
>
>
> #!/bin/bash
>
> # Only restart spamd if sa-update returns 0, meaning it updated the rules
>
> /usr/bin/sa-update | logger -i -p mail.info
>
> if [ "${PIPESTATUS[0]}" != "0" ]; then
> exit ${PIPESTATUS[0]}
> fi
>
> svc -d /var/qmail/supervise/spamd | logger -i -p mail.info
> svc -t /var/qmail/supervise/spamd | logger -i -p mail.info
> svc -u /var/qmail/supervise/spamd | logger -i -p mail.info
>
>