Looks like it was already gone in 3.0.2.3.
Since I did a manual freshclam -v several times , i can't check the /var/log/clamav/freshclam.log for recent runtimes.
No need to mention the need for updates
There should be a freshclam job in /etc/cron.daily. ( or is there another way to update?)
Code: Select all
[root@efa3.0.2.4 cron.daily]# ls -l
total 52
-rw-r--r--. 1 root root  530 May 24 12:13 1
lrwxrwxrwx  1 root root   26 Aug 28 09:39 cron-dccd -> /var/dcc/libexec/cron-dccd
-rwx------. 1 root root 1099 May 24 12:16 EFA-Backup-cron
-rwx------. 1 root root 1107 May 24 12:16 EFA-Daily-cron
-rwxr-xr-x. 1 root root  120 May 24 12:13 eFa-SAClean
-rwx------. 1 root root 2161 May 24 12:13 EFA-Tokens-Cron
-r-xr-xr-x  1 root root  313 Jul 29 17:04 logrotate
-rwxr-xr-x  1 root root  188 Aug 28 11:06 mailscanner
-rwxr-xr-x  1 root root  289 Sep  7 13:52 mailwatch
-rwx------. 1 root root  927 Mar 22 01:53 makewhatis.cron
-rwx------. 1 root root  189 Jan 26  2015 mlocate.cron
-rwxr-xr-x. 1 root root 2126 Jul 19  2013 prelink
-rwxr-xr-x. 1 root root  563 Nov 23  2013 readahead.cron
-rwxr-xr-x  1 root root  848 Jul 29 17:04 tmpwatch
Code: Select all
#!/bin/sh
### A simple update script for the clamav virus database.
### This could as well be replaced by a SysV script.
### fix log file if needed
LOG_FILE="/var/log/clamav/freshclam.log"
if [ ! -f "$LOG_FILE" ]; then
    touch "$LOG_FILE"
    chmod 644 "$LOG_FILE"
    chown clam.clam "$LOG_FILE"
fi
/usr/bin/freshclam \
    --quiet \
    --datadir="/var/lib/clamav" \
    --log="$LOG_FILE"