]> git.openstreetmap.org Git - chef.git/commitdiff
Fix matomo test failures
authorTom Hughes <tom@compton.nu>
Wed, 10 Aug 2022 19:16:48 +0000 (19:16 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 10 Aug 2022 20:13:11 +0000 (21:13 +0100)
cookbooks/matomo/recipes/default.rb

index d4e4697b16daf8d79ad412dcae7991d4c36c42d8..453afc4882d0fa76c933f0dd96ec2d9d8f6d94ab 100644 (file)
@@ -43,23 +43,12 @@ version = node[:matomo][:version]
 
 geoip_directory = node[:geoipupdate][:directory]
 
-directory "/opt/matomo-#{version}" do
-  owner "root"
-  group "root"
-  mode "0755"
-end
-
 remote_file "#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip" do
   source "https://builds.matomo.org/matomo-#{version}.zip"
 end
 
 archive_file "#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip" do
-  action :nothing
   destination "/opt/matomo-#{version}"
-  overwrite true
-  owner "root"
-  group "root"
-  subscribes :extract, "remote_file[#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip]", :immediately
   notifies :run, "notify_group[matomo-updated]"
 end
 
@@ -71,13 +60,8 @@ node[:matomo][:plugins].each do |plugin_name, plugin_version|
   end
 
   archive_file "#{Chef::Config[:file_cache_path]}/matomo-#{plugin_name}-#{plugin_version}.zip" do
-    action :nothing
     destination "/opt/matomo-#{version}/matomo/plugins"
-    overwrite true
-    owner "root"
-    group "root"
-    subscribes :extract, "archive_file[#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip]", :immediately
-    subscribes :extract, "remote_file[#{Chef::Config[:file_cache_path]}/matomo-#{plugin_name}-#{plugin_version}.zip]", :immediately
+    overwrite :auto
     notifies :run, "notify_group[matomo-updated]"
   end
 end