Hey friends,

I upgraded the earlier version of clamav .83 to clamav.84 on Fedora
Core 3.I did not find any problem while uninstalling earlier version
and installing the latest version.

I have created one scan script ,what this script does is it daily
scans my Fedora Core 3 server for any virus or trojans.

The contents of the script are
*************************************************
#!/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/scan.log"
if [ ! -f "$LOG_FILE" ]; then
   touch "$LOG_FILE"
   chmod 644 "$LOG_FILE"
   chown clamav.clamav "$LOG_FILE"
fi

/usr/bin/clamscan -r /root /usr /var /home /tmp \
   --quiet \
   --log="$LOG_FILE" \
   --log-verbose \
   --move=/var/log/infected \

***************************************************

Everytime the script is run these messages are displayed on the standard ouput.

"LibClamAV Error: cli_untar: only standard TAR files are currently supported
LibClamAV Warning: Multipart MIME message contains no boundaries"

Is there any problem with this script or clamav.

Moreover another latest version of clamav is available now as shown in the logs

ClamAV update process started at Thu May 12 04:02:08 2005
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.84 Recommended version: 0.85
DON'T PANIC! Read http://www.clamav.net/faq.html
main.cvd is up to date (version: 31, sigs: 33079, f-level: 4, builder: tkojm)
daily.cvd is up to date (version: 875, sigs: 1218, f-level: 4, builder: diego)

Please guide me.

Thanks & Regards

Ankush Grover
_______________________________________________
http://lurker.clamav.net/list/clamav-users.html

Reply via email to