11 lines
193 B
Bash
11 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 "$@"
|