all-in-one/Containers/clamav/start.sh

12 lines
238 B
Bash
Raw Normal View History

#!/bin/bash
# Adjust settings
cat /etc/clamav/clamd.conf > /tmp/clamd.conf
CLAMAV_FILE="$(sed "s|10G|$MAX_SIZE|" /clamav.conf)"
echo "$CLAMAV_FILE" >> /tmp/clamd.conf
# Call initial init
/init --config-file="/tmp/clamd.conf"
exec "$@"