]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/cgimap.rb
Fixes for building cgimap on 14.04 machines
[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 "gcc"
26 package "make"
27 package "autoconf"
28 package "automake"
29 package "libfcgi-dev"
30 package "libxml2-dev"
31 package "libmemcached-dev"
32 package "libboost-regex-dev"
33 package "libboost-system-dev"
34 package "libboost-program-options-dev"
35 package "libboost-date-time-dev"
36 package "libpqxx3-dev"
37 package "zlib1g-dev"
38
39 cgimap_directory = "#{node[:web][:base_directory]}/cgimap"
40 pid_directory = node[:web][:pid_directory]
41 log_directory = node[:web][:log_directory]
42
43 if node[:lsb][:release].to_f >= 14.04
44   libdir = "/usr/lib/x86_64-linux-gnu"
45 else
46   libdir = "/usr/lib"
47 end
48
49 execute "cgimap-build" do
50   action :nothing
51   command "make"
52   cwd cgimap_directory
53   user "rails"
54   group "rails"
55 end
56
57 execute "cgimap-configure" do
58   action :nothing
59   command "./configure --with-fcgi=/usr --with-boost-libdir=#{libdir}"
60   cwd cgimap_directory
61   user "rails"
62   group "rails"
63   notifies :run, "execute[cgimap-build]", :immediate
64 end
65
66 execute "cgimap-autogen" do
67   action :nothing
68   command "./autogen.sh"
69   cwd cgimap_directory
70   user "rails"
71   group "rails"
72   notifies :run, "execute[cgimap-configure]", :immediate
73 end
74
75 git cgimap_directory do
76   action :sync
77   repository "git://git.openstreetmap.org/cgimap.git"
78   revision "live"
79   user "rails"
80   group "rails"
81   notifies :run, "execute[cgimap-autogen]", :immediate
82 end
83
84 if node[:web][:readonly_database_host]
85   database_host = node[:web][:readonly_database_host]
86   database_readonly = true
87 else
88   database_host = node[:web][:database_host]
89   database_readonly = node[:web][:status] == "database_readonly"
90 end
91
92 cgimap_init = edit_file "#{cgimap_directory}/scripts/cgimap.init" do |line|
93   line.gsub!(/^CGIMAP_HOST=.*;/, "CGIMAP_HOST=#{database_host};")
94   line.gsub!(/^CGIMAP_DBNAME=.*;/, "CGIMAP_DBNAME=openstreetmap;")
95   line.gsub!(/^CGIMAP_USERNAME=.*;/, "CGIMAP_USERNAME=rails;")
96   line.gsub!(/^CGIMAP_PASSWORD=.*;/, "CGIMAP_PASSWORD=#{db_passwords['rails']};")
97   line.gsub!(/^CGIMAP_PIDFILE=.*;/, "CGIMAP_PIDFILE=#{pid_directory}/cgimap.pid;")
98   line.gsub!(/^CGIMAP_LOGFILE=.*;/, "CGIMAP_LOGFILE=#{log_directory}/cgimap.log;")
99   line.gsub!(/^CGIMAP_MEMCACHE=.*;/, "CGIMAP_MEMCACHE=rails1,rails2,rails3;")
100
101   line.gsub!(/\/home\/rails\/bin\/map/, "#{cgimap_directory}/map")
102
103   if database_readonly
104     line.gsub!(/--daemon/, "--daemon --readonly")
105   end
106
107   line
108 end
109
110 file "/etc/init.d/cgimap" do
111   owner "root"
112   group "root"
113   mode 0755
114   content cgimap_init
115 end
116
117 if ["database_offline", "api_offline"].include?(node[:web][:status])
118   service "cgimap" do
119     action :stop
120   end
121 else
122   service "cgimap" do
123     action [ :enable, :start ]
124     supports :restart => true, :reload => true
125     subscribes :restart, "execute[cgimap-build]"
126     subscribes :restart, "file[/etc/init.d/cgimap]"
127   end
128 end