Tags: patch Hi!
How about just allowing a download failure in the postinst instead? This wouldn't compromise the ability for "update-eicar" to do its job, but would allow the package to install if an external network was not available. Thanks, -Kees -- Kees Cook @outflux.net
--- clamav-getfiles-2.0/debian/postinst~ 2008-10-25 22:18:07.000000000 -0700 +++ clamav-getfiles-2.0/debian/postinst 2008-10-25 22:18:16.000000000 -0700 @@ -8,6 +8,6 @@ if [ "$1" = "configure" ]; then db_get clamav-getfiles/download-eicar-com if [ "$RET" = "true" ]; then - update-eicar + update-eicar || true fi fi

