X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/261e7e9cd1a9882faa4ed7087b5902ebafe25988..a1dafdc4794ca4537c5d63ee2205de6788b7b8ca:/cookbooks/otrs/recipes/default.rb diff --git a/cookbooks/otrs/recipes/default.rb b/cookbooks/otrs/recipes/default.rb index fa9644287..c90b28940 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" @@ -66,6 +67,7 @@ config = edit_file "/opt/otrs-#{version}/Kernel/Config.pm.dist" do |line| line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'") line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1") line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1") + line.gsub!(/^( *)# (\$Self->{CheckMXRecord} = 0)/, "\\1\\2") line end @@ -93,7 +95,7 @@ execute "/opt/otrs/bin/otrs.SetPermissions.pl" do command "/opt/otrs/bin/otrs.SetPermissions.pl --otrs-user=#{user} --web-user=www-data --otrs-group=www-data --web-group=www-data /opt/otrs-#{version}" user "root" group "root" - not_if { File.stat("/opt/otrs/README").uid != Etc.getpwnam("otrs").uid } + not_if { File.stat("/opt/otrs/README.md").uid != Etc.getpwnam("otrs").uid } end execute "/opt/otrs/bin/otrs.RebuildConfig.pl" do