diff options
author | Andrej Kacian <ticho@gentoo.org> | 2005-05-16 09:23:24 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2005-05-16 09:23:24 +0000 |
commit | bcd9c95dfd2dfe4347a0537738f3c93f7a520dd7 (patch) | |
tree | 1d48a8a267f4cfbaffda7bd773e497106f173e5c | |
parent | mask mythtv 0.18.1 and remove mask on 0.18 (diff) | |
download | gentoo-2-bcd9c95dfd2dfe4347a0537738f3c93f7a520dd7.tar.gz gentoo-2-bcd9c95dfd2dfe4347a0537738f3c93f7a520dd7.tar.bz2 gentoo-2-bcd9c95dfd2dfe4347a0537738f3c93f7a520dd7.zip |
Added -d to freshclam startup in new initscript.
(Portage version: 2.0.51.21-r1)
-rw-r--r-- | app-antivirus/clamav/ChangeLog | 6 | ||||
-rw-r--r-- | app-antivirus/clamav/Manifest | 14 | ||||
-rw-r--r-- | app-antivirus/clamav/files/clamd.rc.new | 4 |
3 files changed, 9 insertions, 15 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog index c1ed0721f5b2..1b68b404f671 100644 --- a/app-antivirus/clamav/ChangeLog +++ b/app-antivirus/clamav/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-antivirus/clamav # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.66 2005/05/14 21:31:33 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.67 2005/05/16 09:23:24 ticho Exp $ + + 16 May 2005; Andrej Kacian <ticho@gentoo.org> files/clamd.rc.new: + Added "-d" to freshclam start options in the new initscript. Suggested by + Phil Pennock <pdp at spodhuis demon nl>. *clamav-0.85-r1 (14 May 2005) diff --git a/app-antivirus/clamav/Manifest b/app-antivirus/clamav/Manifest index 8de5abf2d1b1..db11292d681a 100644 --- a/app-antivirus/clamav/Manifest +++ b/app-antivirus/clamav/Manifest @@ -1,10 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 34a649543043b4506c5ecdca94ddad41 clamav-0.85.ebuild 2314 MD5 bf2cf15ce5fddd93fffa28e8b0a3f50f clamav-0.84.ebuild 2314 MD5 689c7676f16b3126b2c3f9271f7c2a1e clamav-0.85-r1.ebuild 3290 -MD5 87f5af61a9766e98fbe1da8fc69fc56c ChangeLog 14139 +MD5 5e7d4d056480087024b9ae1f91c96c1f ChangeLog 14327 MD5 7e32edfd72887a57b16ecd73f0f7a1a0 metadata.xml 184 MD5 6ea55388f51845c2f815589dfed047a4 clamav-0.83.ebuild 2332 MD5 0bd0d31062475433335752e126830799 files/digest-clamav-0.85-r1 64 @@ -12,13 +9,6 @@ MD5 ad7d45b1be51c06986cb42c53e733d19 files/clamav-milter.README.gentoo 1311 MD5 9bbf2754f8178fd5164875d784aa9ffa files/digest-clamav-0.83 64 MD5 3e9877b8901f604bd65ea89ff18833b6 files/digest-clamav-0.84 64 MD5 0bd0d31062475433335752e126830799 files/digest-clamav-0.85 64 -MD5 196736a2cfb77956ff3f22fd91886c0e files/clamd.rc.new 1252 +MD5 87a10ee2182d8d04ff2e3efc9c5ff3c8 files/clamd.rc.new 1258 MD5 e29ee77ca9bfe28ed18dbf67a9c90e75 files/clamd.conf 193 MD5 1b3268d3723e003ad99bf706e6bf4312 files/clamd.rc 1444 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFChoN2QlM6RnzZP+IRAvcCAKCP9Qj77OEXAvuVg0Rk9+yH3KZA2QCeNPjx -BbJ8Ut3J57EpjgnAJ5CEYo4= -=aAoD ------END PGP SIGNATURE----- diff --git a/app-antivirus/clamav/files/clamd.rc.new b/app-antivirus/clamav/files/clamd.rc.new index 8a3ebb4bda76..cdbce1b19d91 100644 --- a/app-antivirus/clamav/files/clamd.rc.new +++ b/app-antivirus/clamav/files/clamd.rc.new @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/files/clamd.rc.new,v 1.1 2005/05/14 21:31:33 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/files/clamd.rc.new,v 1.2 2005/05/16 09:23:24 ticho Exp $ CLAMD_SOCKET=`grep ^LocalSocket /etc/clamd.conf | cut -d\ -f 2` @@ -23,7 +23,7 @@ start() { if [ "${START_FRESHCLAM}" = "yes" ]; then ebegin "Starting freshclam" start-stop-daemon --start --quiet \ - --exec /usr/bin/freshclam + --exec /usr/bin/freshclam -- -d retcode=$? if [ ${retcode} = 1 ]; then eend 0 |