Author Topic: Local antivirus update without IP  (Read 6183 times)

0 Members and 1 Guest are viewing this topic.

Offline reza2

  • Newbie
  • *
  • Posts: 1
Local antivirus update without IP
« 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"

Offline Radek Brich

  • Developer (Linux AV, Mac AV)
  • Avast team
  • Jr. Member
  • *
  • Posts: 54
Re: Local antivirus update without IP
« Reply #1 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.