X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9a6a2e29fd799a3e52f1a96cbf36f51ae0ef5ed6..89654617b3fa5bbb3928709b4c8fac025a7f649b:/cookbooks/otrs/recipes/default.rb diff --git a/cookbooks/otrs/recipes/default.rb b/cookbooks/otrs/recipes/default.rb index 9644dc667..18b0c2ea6 100644 --- a/cookbooks/otrs/recipes/default.rb +++ b/cookbooks/otrs/recipes/default.rb @@ -34,25 +34,26 @@ package "libmail-imapclient-perl" package "libnet-ldap-perl" package "libpdf-api2-perl" package "libsoap-lite-perl" +package "libyaml-libyaml-perl" +package "libcrypt-eksblowfish-perl" apache_module "headers" version = node[:otrs][:version] user = node[:otrs][:user] -group = node[:otrs][:group] database_cluster = node[:otrs][:database_cluster] database_name = node[:otrs][:database_name] 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"