b6a2788
#!/bin/sh
b6a2788
b6a2788
### A simple update script for the clamav virus database.
b6a2788
### This could as well be replaced by a SysV script.
b6a2788
b6a2788
### fix log file if needed
b6a2788
LOG_FILE="%{_localstatedir}/log/clamav/freshclam.log"
b6a2788
if [ ! -f "$LOG_FILE" ]; then
b6a2788
    touch "$LOG_FILE"
b6a2788
    chmod 644 "$LOG_FILE"
b6a2788
    chown clam.clam "$LOG_FILE"
b6a2788
fi
b6a2788
b6a2788
%{_bindir}/freshclam \
b6a2788
    --quiet \
b6a2788
    --datadir="%{_localstatedir}/lib/clamav" \
b6a2788
    --log="$LOG_FILE"