Cause
freshclam process started by /etc/cron.daily/freshclam script which doesn't check if clamd is disabledResolution
Modify the /etc/cron.daily/freshclam script adding the check whether the clamd is disabled.
1. Log into your Parallels Pro Control Panel box as root
2. Open the /etc/cron.daily/freshclam
3. Replace the following lines
/usr/bin/freshclam \
--quiet \
--datadir="/var/clamav" \
--log="$LOG_FILE" \
--log-verbose \
--daemon-notify="/etc/clamd.conf"
with the lines
if [ "x" != "x`chkconfig --list clamd | grep on`" ]; then
/usr/bin/freshclam \
--quiet \
--datadir="/var/clamav" \
--log="$LOG_FILE" \
--log-verbose \
--daemon-notify="/etc/clamd.conf"
fi