#!/bin/sh
# ClamAV Database Update Script
echo "ClamAV Database Manager"
echo "======================"
echo ""

# Check if freshclam is available
if command -v freshclam >/dev/null 2>&1; then
    echo "Using freshclam to update virus databases..."
    exec freshclam "$@"
else
    echo "ERROR: freshclam not found"
    echo "Please install the 'freshclam' package to update ClamAV databases"
    exit 1
fi
