mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
10 lines
193 B
Bash
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 "$@"
|