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 # http://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 "apache::ssl"
23 package "libapache2-mod-perl2"
24 package "libapache2-reload-perl"
26 package "libgd-gd2-perl"
27 package "libgd-graph-perl"
28 package "libgd-text-perl"
29 package "libjson-xs-perl"
30 package "libmail-imapclient-perl"
31 package "libnet-ldap-perl"
32 package "libpdf-api2-perl"
33 package "libsoap-lite-perl"
35 apache_module "headers"
37 version = node[:otrs][:version]
38 user = node[:otrs][:user]
39 group = node[:otrs][:group]
40 database_cluster = node[:otrs][:database_cluster]
41 database_name = node[:otrs][:database_name]
42 database_user = node[:otrs][:database_user]
43 database_password = node[:otrs][:database_password]
44 site = node[:otrs][:site]
46 remote_file "/tmp/otrs-#{version}.tar.bz2" do
47 source "http://ftp.otrs.org/pub/otrs/otrs-#{version}.tar.bz2"
48 not_if { File.exist?("/opt/otrs-#{version}") }
51 execute "untar-otrs-#{version}" do
52 command "tar jxf /tmp/otrs-#{version}.tar.bz2"
56 not_if { File.exist?("/opt/otrs-#{version}") }
59 file "/opt/otrs-#{version}/Kernel/Config.pm" do
63 content_from_file "/opt/otrs-#{version}/Kernel/Config.pm.dist" do |line|
64 line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
65 line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'")
66 line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'")
67 line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
68 line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1")
69 line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1")
75 file "/opt/otrs-#{version}/Kernel/Config/GenericAgent.pm" do
79 content_from_file "/opt/otrs-#{version}/Kernel/Config/GenericAgent.pm.dist" do |line|
85 to "/opt/otrs-#{version}"
88 execute "/opt/otrs/bin/otrs.SetPermissions.pl" do
90 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}"
93 not_if { File.stat("/opt/otrs/README").uid != Etc.getpwnam("otrs").uid }
96 execute "/opt/otrs/bin/otrs.RebuildConfig.pl" do
98 command "/opt/otrs/bin/otrs.RebuildConfig.pl"
101 not_if { File.exist?("/opt/otrs/Kernel/Config/Files/ZZZAAuto.pm") }
104 if node[:postgresql][:clusters][database_cluster]
105 postgresql_user database_user do
106 cluster database_cluster
107 password database_password
110 postgresql_database database_name do
111 cluster database_cluster
116 execute "/opt/otrs/bin/Cron.sh" do
118 command "/opt/otrs/bin/Cron.sh restart"
123 Dir.glob("/opt/otrs/var/cron/*.dist") do |distname|
124 name = distname.sub(".dist", "")
130 content IO.read(distname)
131 notifies :run, resources(:execute => "/opt/otrs/bin/Cron.sh")
136 template "apache.erb"
139 template "/etc/sudoers.d/otrs" do