HestiaCP is unable to identify the ClamAV-Daemon

And that is the reason clamav service wasn’t shown as up and running in Hestia. That dir is not a default dir neither for Debian nor Ubuntu and Hestia checks the existence of that dir to use one or another check.

# Checking MAIL ANTIVIRUS
if [ -n "$ANTIVIRUS_SYSTEM" ] && [ "$ANTIVIRUS_SYSTEM" != 'remote' ]; then
        if [ -d "/etc/sysconfig" ]; then
                if [ "$ANTIVIRUS_SYSTEM" == 'clamav' ]; then
                        ANTIVIRUS_SYSTEM='clamd'
                fi
                get_srv_state "$ANTIVIRUS_SYSTEM"
        else
                if [ "$ANTIVIRUS_SYSTEM" == 'clamav-daemon' ]; then
                        proc_name='clamd'
                fi
                get_srv_state "$ANTIVIRUS_SYSTEM" "$proc_name"
        fi
        data="$data\nNAME='$ANTIVIRUS_SYSTEM' SYSTEM='email anti-virus'"
        data="$data STATE='$state' CPU='$cpu' MEM='$mem' RTIME='$rtime'"
        proc_name=''
fi