]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/recipes/default.rb
Disable IP checks for OTRS sessions
[chef.git] / cookbooks / otrs / recipes / default.rb
1 #
2 # Cookbook Name:: otrs
3 # Recipe:: default
4 #
5 # Copyright 2012, OpenStreetMap Foundation
6 #
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
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "tools"
21 include_recipe "postgresql"
22 include_recipe "apache"
23
24 passwords = data_bag_item("otrs", "passwords")
25
26 package "libapache2-mod-perl2"
27 package "libapache2-reload-perl"
28
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"
40
41 apache_module "headers"
42
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]
50 site_aliases = node[:otrs][:site_aliases] || []
51
52 postgresql_user database_user do
53   cluster database_cluster
54   password database_password
55 end
56
57 postgresql_database database_name do
58   cluster database_cluster
59   owner database_user
60 end
61
62 remote_file "#{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2" do
63   source "https://ftp.otrs.org/pub/otrs/otrs-#{version}.tar.bz2"
64   not_if { File.exist?("/opt/otrs-#{version}") }
65 end
66
67 execute "untar-otrs-#{version}" do
68   command "tar jxf #{Chef::Config[:file_cache_path]}/otrs-#{version}.tar.bz2"
69   cwd "/opt"
70   user "root"
71   group "root"
72   not_if { File.exist?("/opt/otrs-#{version}") }
73 end
74
75 config = edit_file "/opt/otrs-#{version}/Kernel/Config.pm.dist" do |line|
76   line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
77   line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'")
78   line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'")
79   line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
80   line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1")
81   line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1")
82   line.gsub!(/^( *)# (\$Self->{CheckMXRecord} = 0)/, "\\1\\2")
83   line.gsub!(/^( *)# \$Self->{SessionUseCookie} = 0/, "\\1$Self->{SessionCheckRemoteIP} = 0")
84
85   line
86 end
87
88 file "/opt/otrs-#{version}/Kernel/Config.pm" do
89   owner user
90   group "www-data"
91   mode 0o664
92   content config
93 end
94
95 link "/opt/otrs" do
96   to "/opt/otrs-#{version}"
97 end
98
99 execute "/opt/otrs/bin/otrs.SetPermissions.pl" do
100   action :run
101   command "/opt/otrs/bin/otrs.SetPermissions.pl --otrs-user=#{user} --web-group=www-data /opt/otrs-#{version}"
102   user "root"
103   group "root"
104   only_if { File.stat("/opt/otrs/README.md").uid != Etc.getpwnam("otrs").uid }
105 end
106
107 execute "/opt/otrs/bin/otrs.RebuildConfig.pl" do
108   action :run
109   command "/opt/otrs/bin/otrs.RebuildConfig.pl"
110   user "root"
111   group "root"
112   not_if { File.exist?("/opt/otrs/Kernel/Config/Files/ZZZAAuto.pm") }
113 end
114
115 execute "/opt/otrs/bin/Cron.sh" do
116   action :nothing
117   command "/opt/otrs/bin/Cron.sh restart"
118   user "otrs"
119   group "otrs"
120 end
121
122 Dir.glob("/opt/otrs/var/cron/*.dist") do |distname|
123   name = distname.sub(".dist", "")
124
125   file name do
126     owner "otrs"
127     group "www-data"
128     mode 0o664
129     content IO.read(distname)
130     notifies :run, "execute[/opt/otrs/bin/Cron.sh]"
131   end
132 end
133
134 ssl_certificate site do
135   domains [site] + site_aliases
136   notifies :reload, "service[apache2]"
137 end
138
139 apache_site site do
140   template "apache.erb"
141   variables :aliases => site_aliases
142 end
143
144 template "/etc/sudoers.d/otrs" do
145   source "sudoers.erb"
146   owner "root"
147   group "root"
148   mode 0o440
149 end
150
151 template "/etc/cron.daily/otrs-backup" do
152   source "backup.cron.erb"
153   owner "root"
154   group "root"
155   mode 0o755
156 end