bootstrap.sh 325 B

1234567891011121314
  1. #!/bin/bash
  2. touch /var/log/clamav/clamd.log /var/log/clamav/freshclam.log
  3. chown -R clamav:clamav /var/log/clamav/
  4. if [[ "${SKIP_CLAMD}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
  5. echo "SKIP_CLAMD=y, skipping ClamAV..."
  6. sleep 365d
  7. exit 0
  8. fi
  9. freshclam -d &
  10. clamd &
  11. tail -f /var/log/clamav/clamd.log /var/log/clamav/freshclam.log