5 # Copyright 2012, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "tools"
21 include_recipe "postgresql"
22 include_recipe "apache"
24 passwords = data_bag_item("otrs", "passwords")
26 package "libapache2-mod-perl2"
27 package "libapache2-reload-perl"
29 package "libgd-gd2-perl"
30 package "libgd-graph-perl"
31 package "libgd-text-perl"
32 package "libjson-xs-perl"
33 package "libmail-imapclient-perl"
34 package "libnet-ldap-perl"
35 package "libpdf-api2-perl"
36 package "libsoap-lite-perl"
37 package "libyaml-libyaml-perl"
38 package "libcrypt-eksblowfish-perl"
39 package "libtemplate-perl"
41 apache_module "headers"
43 version = node[:otrs][:version]
44 user = node[:otrs][:user]
45 database_cluster = node[:otrs][:database_cluster]
46 database_name = node[:otrs][:database_name]
47 database_user = node[:otrs][:database_user]
48 database_password = passwords[node[:otrs][:database_password]]
49 site = node[:otrs][:site]
51 old_installation = begin
52 File.readlink("/opt/otrs")
57 postgresql_user database_user do
58 cluster database_cluster
59 password database_password
62 postgresql_database database_name do
63 cluster database_cluster
67 remote_file "#{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2" do
68 source "https://ftp.otrs.org/pub/otrs/otrs-#{version}.tar.bz2"
69 not_if { File.exist?("/opt/otrs-#{version}") }
72 execute "untar-otrs-#{version}" do
73 command "tar jxf #{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2"
77 not_if { File.exist?("/opt/otrs-#{version}") }
80 config = edit_file "/opt/otrs-#{version}/Kernel/Config.pm.dist" do |line|
81 line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
82 line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'")
83 line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'")
84 line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
85 line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1")
86 line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1")
87 line.gsub!(/^( *)# (\$Self->{CheckMXRecord} = 0)/, "\\1\\2")
92 file "/opt/otrs-#{version}/Kernel/Config.pm" do
99 link "/opt/otrs-#{version}/Kernel/Config/Files/ZZZAuto.pm" do
100 to "#{old_installation}/Kernel/Config/Files/ZZZAuto.pm"
104 link "/opt/otrs-#{version}/var/log/TicketCounter.log" do
105 to "#{old_installation}/var/log/TicketCounter.log"
110 to "/opt/otrs-#{version}"
113 execute "/opt/otrs/bin/otrs.SetPermissions.pl" do
115 command "/opt/otrs/bin/otrs.SetPermissions.pl --otrs-user=#{user} --web-group=www-data /opt/otrs-#{version}"
118 only_if { File.stat("/opt/otrs/README.md").uid != Etc.getpwnam("otrs").uid }
121 execute "/opt/otrs/bin/otrs.RebuildConfig.pl" do
123 command "/opt/otrs/bin/otrs.RebuildConfig.pl"
126 not_if { File.exist?("/opt/otrs/Kernel/Config/Files/ZZZAAuto.pm") }
129 execute "/opt/otrs/bin/Cron.sh" do
131 command "/opt/otrs/bin/Cron.sh restart"
136 Dir.glob("/opt/otrs/var/cron/*.dist") do |distname|
137 name = distname.sub(".dist", "")
143 content IO.read(distname)
144 notifies :run, "execute[/opt/otrs/bin/Cron.sh]"
148 ssl_certificate site do
150 notifies :reload, "service[apache2]"
154 template "apache.erb"
157 template "/etc/sudoers.d/otrs" do
164 template "/etc/cron.daily/otrs-backup" do
165 source "backup.cron.erb"