From fa71c73145311f316cd8435602b4027aaa88d620 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 13 Feb 2020 22:54:31 +0000 Subject: [PATCH 1/1] Improve check for whether to run freshclam --- cookbooks/clamav/recipes/default.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cookbooks/clamav/recipes/default.rb b/cookbooks/clamav/recipes/default.rb index 3c95527ce..bbfc2cd68 100644 --- a/cookbooks/clamav/recipes/default.rb +++ b/cookbooks/clamav/recipes/default.rb @@ -34,7 +34,10 @@ execute "freshclam" do command "/usr/bin/freshclam" user "clamav" group "clamav" - not_if { ::File.exist?("/var/lib/clamav/daily.cvd") } + not_if do + ::File.exist?("/var/lib/clamav/daily.cld") || + ::File.exist?("/var/lib/clamav/daily.cvd") + end end service "clamav-daemon" do -- 2.43.2