mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
12 lines
271 B
Bash
12 lines
271 B
Bash
#!/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
|
|
# shellcheck disable=SC2093
|
|
exec /init --config-file="/tmp/clamd.conf"
|
|
|
|
exec "$@"
|