Skip to content

Commit

Permalink
clamav: Update version from 0.102.1 to 10.104.2
Browse files Browse the repository at this point in the history
The freshclam cron job on the distmaster complaints:

ClamAV update process started at Tue Feb  1 13:22:01 2022
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.102.1 Recommended version: 0.103.5
DON'T PANIC! Read https://www.clamav.net/documents/upgrading-clamav
daily database available for update (local version: 26439, remote version: 26440)
WARNING: downloadFile: Unexpected response (403) from https://database.clamav.net/daily-26440.cdiff
WARNING: getpatch: Can't download daily-26440.cdiff from https://database.clamav.net/daily-26440.cdiff
[...]
Giving up on https://database.clamav.net...
ERROR: Update failed for database: daily
WARNING: fc_update_databases: fc_update_database failed: HTTP GET failed (11)
ERROR: Database update process failed: HTTP GET failed (11)
ERROR: Update failed.

- Don't panic, read https://www.clamav.net/documents/upgrading-clamav
  and upgrade version.

- Add config option ENABLE_MILTER=OFF to avoid configure error ("milter
  nor found")

- Add config option APP_CONFIG_DIRECTORY=/etc to prevent files installed
  into /usr/etc.
  • Loading branch information
donald committed Feb 1, 2022
1 parent cfeead8 commit b296e8a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions clamav.be0
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION clamav-0.102.1-0
# BEE_VERSION clamav-0.104.2-0

# SRCURL[0]="https://www.clamav.net/downloads/production/clamav-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/3d5f5f10a1bea212823050286c8c5b96/clamav-0.102.1.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/ad099675f2c09c07850e36496b06c552/clamav-0.104.2.tar.gz"

# PATCHURL+=()

Expand All @@ -19,9 +19,11 @@ SRCURL[0]="https://beehive.molgen.mpg.de/3d5f5f10a1bea212823050286c8c5b96/clamav
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_configure() {
bee_configure \
-D ENABLE_MILTER=OFF \
-D APP_CONFIG_DIRECTORY=/etc
}

#mee_build() {
# bee_build
Expand Down

0 comments on commit b296e8a

Please sign in to comment.