diff options
author | garga <garga@FreeBSD.org> | 2008-06-17 19:20:04 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2008-06-17 19:20:04 +0800 |
commit | 779956bdc9d51404665b81477c290979f36f7cc0 (patch) | |
tree | 8735b2cc1a2b101db73980597d0ae891ce3afe76 /security/clamav | |
parent | fc424021f634061516310349af61775084e1ea8d (diff) | |
download | freebsd-ports-gnome-779956bdc9d51404665b81477c290979f36f7cc0.tar.gz freebsd-ports-gnome-779956bdc9d51404665b81477c290979f36f7cc0.tar.zst freebsd-ports-gnome-779956bdc9d51404665b81477c290979f36f7cc0.zip |
- Fix checking of database viruses at startup script that i broke on last
commit
- Bump PORTREVISION again
Submitted by: George L. Yermulnik <yz@iptcom.net>
Pointyhat to: me
Diffstat (limited to 'security/clamav')
-rw-r--r-- | security/clamav/Makefile | 2 | ||||
-rw-r--r-- | security/clamav/files/clamav-clamd.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/clamav/Makefile b/security/clamav/Makefile index c1e415199dc9..414d19bc7ee6 100644 --- a/security/clamav/Makefile +++ b/security/clamav/Makefile @@ -7,7 +7,7 @@ PORTNAME= clamav PORTVERSION= 0.93.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF diff --git a/security/clamav/files/clamav-clamd.in b/security/clamav/files/clamav-clamd.in index 8adcc8f55466..d3d67d672bef 100644 --- a/security/clamav/files/clamav-clamd.in +++ b/security/clamav/files/clamav-clamd.in @@ -36,7 +36,7 @@ start_precmd=clamav_clamd_precmd #clamav .93 won't start without a valid main.c[vl]d file clamav_clamd_precmd() { - if [ ! -f %%DBDIR%%/main.cvd -a ! %%DBDIR%%/main.cld ];then + if [ ! -f %%DBDIR%%/main.cvd -a ! -f %%DBDIR%%/main.cld ];then echo "Missing %%DBDIR%%/clamav/*.cvd or *.cld files. You must run freshclam first" exit 1 fi |