]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/recipes/default.rb
otrs: Add additional packages as required by deb
[chef.git] / cookbooks / otrs / recipes / default.rb
1 #
2 # Cookbook:: 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 "accounts"
21 include_recipe "apache"
22 include_recipe "exim"
23 include_recipe "postgresql"
24 include_recipe "tools"
25
26 passwords = data_bag_item("otrs", "passwords")
27
28 package "libapache2-mod-perl2"
29 package "libapache2-reload-perl"
30
31 package %w[
32   tar
33   bzip2
34   libapache-dbi-perl
35   libarchive-zip-perl
36   libauthen-ntlm-perl
37   libauthen-sasl-perl
38   libcrypt-eksblowfish-perl
39   libcss-minifier-xs-perl
40   libdatetime-perl
41   libdbd-mysql-perl
42   libencode-hanextra-perl
43   libexcel-writer-xlsx-perl
44   libgd-gd2-perl
45   libgd-graph-perl
46   libgd-text-perl
47   libhtml-parser-perl
48   libio-socket-ssl-perl
49   libjavascript-minifier-xs-perl
50   libjson-perl
51   libjson-xs-perl
52   liblocale-codes-perl
53   libmail-imapclient-perl
54   libmoo-perl
55   libnet-dns-perl
56   libnet-ldap-perl
57   libpdf-api2-perl
58   libsisimai-perl
59   libsoap-lite-perl
60   libspreadsheet-xlsx-perl
61   libtemplate-perl
62   libtext-csv-xs-perl
63   libtext-diff-perl
64   libtimedate-perl
65   libxml-libxml-perl
66   libxml-libxml-simple-perl
67   libxml-libxslt-perl
68   libxml-parser-perl
69   libxml-simple-perl
70   libyaml-libyaml-perl
71   libyaml-perl
72 ]
73
74 apache_module "headers"
75
76 version = node[:otrs][:version]
77 user = node[:otrs][:user]
78 database_cluster = node[:otrs][:database_cluster]
79 database_name = node[:otrs][:database_name]
80 database_user = node[:otrs][:database_user]
81 database_password = passwords[node[:otrs][:database_password]]
82 site = node[:otrs][:site]
83 site_aliases = node[:otrs][:site_aliases] || []
84
85 postgresql_user database_user do
86   cluster database_cluster
87   password database_password
88 end
89
90 postgresql_database database_name do
91   cluster database_cluster
92   owner database_user
93 end
94
95 remote_file "#{Chef::Config[:file_cache_path]}/znuny-#{version}.tar.bz2" do
96   source "https://download.znuny.org/releases/znuny-#{version}.tar.bz2"
97   not_if { ::File.exist?("/opt/znuny-#{version}") }
98 end
99
100 execute "untar-znuny-#{version}" do
101   command "tar jxf #{Chef::Config[:file_cache_path]}/znuny-#{version}.tar.bz2"
102   cwd "/opt"
103   user "root"
104   group "root"
105   not_if { ::File.exist?("/opt/znuny-#{version}") }
106 end
107
108 config = edit_file "/opt/znuny-#{version}/Kernel/Config.pm.dist" do |line|
109   line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
110   line.gsub!(/^( *)\$Self->{DatabaseUser} = 'otrs'/, "\\1$Self->{DatabaseUser} = '#{database_user}'")
111   line.gsub!(/^( *)\$Self->{DatabasePw} = 'some-pass'/, "\\1$Self->{DatabasePw} = '#{database_password}'")
112   line.gsub!(/^( *)\$Self->{Database} = 'otrs'/, "\\1$Self->{Database} = '#{database_name}'")
113   line.gsub!(/^( *\$Self->{DatabaseDSN} = "DBI:mysql:)/, "#\\1")
114   line.gsub!(/^#( *\$Self->{DatabaseDSN} = "DBI:Pg:.*;host=)/, "\\1")
115   line.gsub!(/^( *)# (\$Self->{CheckMXRecord} = 0)/, "\\1\\2")
116   line.gsub!(/^( *)# \$Self->{SessionUseCookie} = 0/, "\\1$Self->{SessionCheckRemoteIP} = 0")
117
118   line
119 end
120
121 file "/opt/znuny-#{version}/Kernel/Config.pm" do
122   owner user
123   group "www-data"
124   mode "664"
125   content config
126 end
127
128 link "/opt/otrs" do
129   to "/opt/znuny-#{version}"
130 end
131
132 execute "/opt/otrs/bin/otrs.SetPermissions.pl" do
133   action :run
134   command "/opt/otrs/bin/otrs.SetPermissions.pl --otrs-user=#{user} --web-group=www-data /opt/otrs-#{version}"
135   user "root"
136   group "root"
137   only_if { File.stat("/opt/otrs/README.md").uid != Etc.getpwnam("otrs").uid }
138 end
139
140 systemd_service "otrs" do
141   description "OTRS Daemon"
142   type "forking"
143   user "otrs"
144   group "otrs"
145   exec_start "/opt/otrs/bin/otrs.Daemon.pl start"
146   private_tmp true
147   protect_system "strict"
148   protect_home true
149   read_write_paths ["/opt/znuny-#{version}/var", "/var/log/exim4", "/var/spool/exim4"]
150 end
151
152 service "otrs" do
153   action [:enable, :start]
154   subscribes :restart, "systemd_service[otrs]"
155 end
156
157 ssl_certificate site do
158   domains [site] + site_aliases
159   notifies :reload, "service[apache2]"
160 end
161
162 apache_site site do
163   template "apache.erb"
164   variables :aliases => site_aliases
165 end
166
167 template "/etc/cron.daily/otrs-backup" do
168   source "backup.cron.erb"
169   owner "root"
170   group "root"
171   mode "755"
172 end