mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
66dc0bc7d6
Signed-off-by: Simon L. <szaimen@e.mail.de>
11 lines
243 B
Bash
11 lines
243 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
|
|
exec /init --config-file="/tmp/clamd.conf"
|
|
|
|
exec "$@"
|