]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/cgimap.rb
231915b149cf9d16dd2a31713a7cf308b1deadd5
[chef.git] / cookbooks / web / recipes / cgimap.rb
1 #
2 # Cookbook Name:: web
3 # Recipe:: cgimap
4 #
5 # Copyright 2011, 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 #     http://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 "web::base"
22
23 db_passwords = data_bag_item("db", "passwords")
24
25 package "openstreetmap-cgimap-bin"
26
27 if node[:web][:readonly_database_host]
28   database_host = node[:web][:readonly_database_host]
29   database_readonly = true
30 else
31   database_host = node[:web][:database_host]
32   database_readonly = node[:web][:status] == "database_readonly"
33 end
34
35 memcached_servers = node[:web][:memcached_servers] || []
36
37 template "/etc/init.d/cgimap" do
38   owner "root"
39   group "root"
40   mode 0o755
41   source "cgimap.init.erb"
42   variables(
43     :db_password => db_passwords["rails"],
44     :pid_directory => node[:web][:pid_directory],
45     :log_directory => node[:web][:log_directory],
46     :database_host => database_host,
47     :database_readonly => database_readonly,
48     :memcached_servers => memcached_servers
49   )
50 end
51
52 if %w(database_offline api_offline).include?(node[:web][:status])
53   service "cgimap" do
54     action :stop
55   end
56 else
57   service "cgimap" do
58     action [:enable, :start]
59     supports :restart => true, :reload => true
60     subscribes :restart, "dpkg_package[openstreetmap-cgimap-bin]"
61     subscribes :restart, "file[/etc/init.d/cgimap]"
62   end
63 end