mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
13 lines
168 B
Bash
13 lines
168 B
Bash
#!/bin/bash
|
|
|
|
if [ "$AIO_LOG_LEVEL" = 'debug' ]; then
|
|
set -x
|
|
fi
|
|
|
|
# Print out clamav version for compliance reasons
|
|
clamscan --version
|
|
|
|
echo "Clamav started"
|
|
|
|
exec "$@"
|