]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/clamav/recipes/default.rb
Use strings for file modes
[chef.git] / cookbooks / clamav / recipes / default.rb
index 3c95527ce3ea6bcf569b297a57ae3a8d9837c4f1..f6dd24a5c8af5b5634eee0aba5c23f800dbee1a9 100644 (file)
@@ -27,14 +27,17 @@ template "/etc/clamav-unofficial-sigs.conf.d/50-chef.conf" do
   source "clamav-unofficial-sigs.conf.erb"
   owner "root"
   group "root"
-  mode 0o644
+  mode "644"
 end
 
 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