-1

I am using ClamAV for scanning our files in our Django application. I am running freshclam manually to update the antivirus database. My question is how to automate it?

Sachin Singh
  • 7,107
  • 6
  • 40
  • 80

1 Answers1

0

From the ClamAV documentation, I created a Cron job with the following code:-

N * * * *   /usr/local/bin/freshclam --quiet
Sachin Singh
  • 7,107
  • 6
  • 40
  • 80