X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b20599b6503be65674c3e420be6cca91b507ac0a..c1f1e240baece8f3a3ee1d7139736e4a6a0f027e:/cookbooks/otrs/recipes/default.rb diff --git a/cookbooks/otrs/recipes/default.rb b/cookbooks/otrs/recipes/default.rb index a3ebf21f4..18b0c2ea6 100644 --- a/cookbooks/otrs/recipes/default.rb +++ b/cookbooks/otrs/recipes/default.rb @@ -47,13 +47,13 @@ database_user = node[:otrs][:database_user] database_password = passwords[node[:otrs][:database_password]] site = node[:otrs][:site] -remote_file "/tmp/otrs-#{version}.tar.bz2" do +remote_file "#{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2" do source "http://ftp.otrs.org/pub/otrs/otrs-#{version}.tar.bz2" not_if { File.exist?("/opt/otrs-#{version}") } end execute "untar-otrs-#{version}" do - command "tar jxf /tmp/otrs-#{version}.tar.bz2" + command "tar jxf #{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2" cwd "/opt" user "root" group "root"