[Clamd] Add SKIP_CLAMD variable to disable Clamd start

master
andryyy 2017-07-04 18:05:44 +02:00
parent a2f1c09a84
commit ed11e7586e
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,11 @@ trap "kill 0" SIGINT
touch /var/log/clamav/clamd.log /var/log/clamav/freshclam.log
chown -R clamav:clamav /var/log/clamav/
if [[ "${SKIP_CLAMD}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
echo "SKIP_CLAMD=y, skipping ClamAV..."
exit 0
fi
freshclam -d &
clamd &