]> git.openstreetmap.org Git - chef.git/blob - cookbooks/db/recipes/base.rb
f92a6ea0bf02e6d19e6d08673194636b334373bc
[chef.git] / cookbooks / db / recipes / base.rb
1 #
2 # Cookbook:: db
3 # Recipe:: base
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 #     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 "git"
22 include_recipe "postgresql"
23 include_recipe "python"
24
25 passwords = data_bag_item("db", "passwords")
26 wal_secrets = data_bag_item("db", "wal-secrets")
27
28 ruby_version = node[:passenger][:ruby_version]
29 db_version = node[:db][:cluster].split("/").first
30 pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config"
31 function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}"
32
33 postgresql_munin "openstreetmap" do
34   cluster node[:db][:cluster]
35   database "openstreetmap"
36 end
37
38 directory "/srv/www.openstreetmap.org" do
39   group "rails"
40   mode 0o2775
41 end
42
43 rails_port "www.openstreetmap.org" do
44   ruby ruby_version
45   directory "/srv/www.openstreetmap.org/rails"
46   user "rails"
47   group "rails"
48   repository "https://git.openstreetmap.org/public/rails.git"
49   revision "live"
50   database_host "localhost"
51   database_name "openstreetmap"
52   database_username "openstreetmap"
53   database_password passwords["openstreetmap"]
54   gpx_dir "/store/rails/gpx"
55 end
56
57 directory function_directory do
58   owner "rails"
59   group "rails"
60   mode 0o755
61 end
62
63 execute function_directory do
64   action :nothing
65   command "make BUNDLE=bundle#{ruby_version} PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}"
66   cwd "/srv/www.openstreetmap.org/rails/db/functions"
67   user "rails"
68   group "rails"
69   subscribes :run, "directory[#{function_directory}]"
70   subscribes :run, "git[/srv/www.openstreetmap.org/rails]"
71 end
72
73 link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do
74   to "#{function_directory}/libpgosm.so"
75   owner "root"
76   group "root"
77 end
78
79 package "lzop"
80
81 python_package "wal-e" do
82   python_version "3"
83 end
84
85 python_package "boto" do
86   python_version "3"
87 end
88
89 template "/usr/local/bin/openstreetmap-wal-e" do
90   source "wal-e.erb"
91   owner "root"
92   group "postgres"
93   mode 0o750
94   variables :s3_key => wal_secrets["s3_key"]
95 end