[Clamd] Add SKIP_CLAMD variable to disable Clamd start
parent
a2f1c09a84
commit
ed11e7586e
|
@ -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 &
|
||||
|
||||
|
|
Loading…
Reference in New Issue