]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/master.rb
e113cbfd3989c255633093a408535e2d188b2c5e
[chef.git] / cookbooks / nominatim / recipes / master.rb
1 #
2 # Cookbook Name:: nominatim
3 # Recipe:: master
4 #
5 # Copyright 2015, 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 "nominatim::base"
21
22 passwords = data_bag_item("nominatim", "passwords")
23 home_directory = data_bag_item("accounts", "nominatim")["home"]
24
25 superusers = %w(tomh lonvia twain nominatim)
26
27 superusers.each do |user|
28   postgresql_user user do
29     cluster database_cluster
30     superuser true
31   end
32 end
33
34 postgresql_user "www-data" do
35   cluster database_cluster
36 end
37
38 postgresql_user "replication" do
39   cluster database_cluster
40   password passwords["replication"]
41   replication true
42 end
43
44 git "#{home_directory}/nominatim" do
45   action :checkout
46   repository node[:nominatim][:repository]
47   enable_submodules true
48   user "nominatim"
49   group "nominatim"
50   notifies :run, "execute[compile_nominatim]"
51 end