all-in-one/Containers/clamav/start.sh
Simon L. 10b1ec5c66 clamav: print out version during startup of container
Signed-off-by: Simon L. <szaimen@e.mail.de>
2025-08-11 10:36:52 +02:00

10 lines
193 B
Bash

#!/bin/bash
sed "s|aio-placeholder|$MAX_SIZE|" /etc/clamav/clamd.conf > /tmp/clamd.conf
# Print out clamav version for compliance reasons
clamscan --version
echo "Clamav started"
exec "$@"