X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/dc5070173ed99b84d8120641a75a07d8a9109c15..0a11a538261d017750924ffa7037ba6e65eb6c5e:/cookbooks/piwik/recipes/default.rb diff --git a/cookbooks/piwik/recipes/default.rb b/cookbooks/piwik/recipes/default.rb index 0bd3ede87..997048308 100644 --- a/cookbooks/piwik/recipes/default.rb +++ b/cookbooks/piwik/recipes/default.rb @@ -32,7 +32,6 @@ package %w[ php-gd php-xml php-apcu - unzip ] apache_module "expires" @@ -51,10 +50,10 @@ remote_file "#{Chef::Config[:file_cache_path]}/piwik-#{version}.zip" do not_if { ::File.exist?("/opt/piwik-#{version}/piwik") } end -execute "unzip-piwik-#{version}" do - command "unzip -q #{Chef::Config[:file_cache_path]}/piwik-#{version}.zip" - cwd "/opt/piwik-#{version}" - user "root" +archive_file "#{Chef::Config[:file_cache_path]}/piwik-#{version}.zip" do + destination "/opt/piwik-#{version}" + overwrite true + owner "root" group "root" not_if { ::File.exist?("/opt/piwik-#{version}/piwik") } end