Avast WEBforum

Business Products => Avast Business => Avast Business for Linux => Topic started by: reza2 on May 21, 2022, 10:12:05 AM

Title: Local antivirus update without IP
Post by: reza2 on May 21, 2022, 10:12:05 AM
local folder

hi
i want update avast linux without set ip to vps.conf as local
i want update from a local folder in linux path, is possible?
i edit vps.conf like this but not work:
   # VPS repository location
   URL="//home/Talker/x86_64"
Title: Re: Local antivirus update without IP
Post by: Radek Brich on May 23, 2022, 07:40:42 AM
Hi, the updates are downloaded with CURL, so you can use any protocol supported by CURL.
For local filesystem, use "file://" protocol.

Code: [Select]
URL="file:///home/Talker/x86_64"

We didn't test this scenario, but I don't see why it shouldn't work.