X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/de8cb84f053060182672c34d7bd2fb90fa1d3d2a..9a6a2e29fd799a3e52f1a96cbf36f51ae0ef5ed6:/cookbooks/otrs/recipes/default.rb diff --git a/cookbooks/otrs/recipes/default.rb b/cookbooks/otrs/recipes/default.rb index c0f9c33e7..9644dc667 100644 --- a/cookbooks/otrs/recipes/default.rb +++ b/cookbooks/otrs/recipes/default.rb @@ -18,6 +18,7 @@ # include_recipe "tools" +include_recipe "postgresql" include_recipe "apache::ssl" passwords = data_bag_item("otrs", "passwords") @@ -58,29 +59,29 @@ execute "untar-otrs-#{version}" do not_if { File.exist?("/opt/otrs-#{version}") } end +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->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'") + line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'") + 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 +end + file "/opt/otrs-#{version}/Kernel/Config.pm" do owner user group "www-data" mode 0664 - content_from_file "/opt/otrs-#{version}/Kernel/Config.pm.dist" do |line| - line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'") - line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'") - line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'") - 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 - end + content config end file "/opt/otrs-#{version}/Kernel/Config/GenericAgent.pm" do owner user group "www-data" mode 0664 - content_from_file "/opt/otrs-#{version}/Kernel/Config/GenericAgent.pm.dist" do |line| - line - end + content IO.read("/opt/otrs-#{version}/Kernel/Config/GenericAgent.pm.dist") end link "/opt/otrs" do @@ -92,7 +93,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 @@ -130,7 +131,7 @@ Dir.glob("/opt/otrs/var/cron/*.dist") do |distname| group "www-data" mode 0664 content IO.read(distname) - notifies :run, resources(:execute => "/opt/otrs/bin/Cron.sh") + notifies :run, "execute[/opt/otrs/bin/Cron.sh]" end end