]> git.openstreetmap.org Git - chef.git/blob - cookbooks/planet/recipes/replication.rb
Install rubygems for the changeset replication script
[chef.git] / cookbooks / planet / recipes / replication.rb
1 #
2 # Cookbook Name:: planet
3 # Recipe:: dump
4 #
5 # Copyright 2013, 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 "osmosis"
21
22 db_passwords = data_bag_item("db", "passwords")
23
24 package "ruby"
25 package "rubygems"
26 package "ruby-libxml"
27
28 gem_package "pg"
29
30 remote_directory "/usr/local/bin" do
31   source "replication-bin"
32   owner "root"
33   group "root"
34   mode 0755
35   files_owner "root"
36   files_group "root"
37   files_mode 0755
38 end
39
40 remote_directory "/store/planet/replication" do
41   source "replication-cgi"
42   owner "root"
43   group "root"
44   mode 0755
45   files_owner "root"
46   files_group "root"
47   files_mode 0755
48 end
49
50 directory "/store/planet/replication/changesets" do
51   owner "planet"
52   group "planet"
53   mode 0755
54 end
55
56 directory "/store/planet/replication/day" do
57   owner "planet"
58   group "planet"
59   mode 0755
60 end
61
62 directory "/store/planet/replication/hour" do
63   owner "planet"
64   group "planet"
65   mode 0755
66 end
67
68 directory "/store/planet/replication/minute" do
69   owner "planet"
70   group "planet"
71   mode 0755
72 end
73
74 directory "/etc/replication" do
75   owner "root"
76   group "root"
77   mode 0755
78 end
79
80 template "/etc/replication/auth.conf" do
81   source "replication.auth.erb"
82   user "root"
83   group "planet"
84   mode 0640
85   variables :password => db_passwords["planetdiff"]
86 end
87
88 template "/etc/replication/changesets.conf" do
89   source "changesets.conf.erb"
90   user "root"
91   group "planet"
92   mode 0640
93   variables :password => db_passwords["planetdiff"]
94 end
95
96 directory "/var/lib/replication" do
97   owner "planet"
98   group "planet"
99   mode 0755
100 end
101
102 directory "/var/lib/replication/hour" do
103   owner "planet"
104   group "planet"
105   mode 0755
106 end
107
108 template "/var/lib/replication/hour/configuration.txt" do
109   source "replication.config.erb"
110   owner "planet"
111   group "planet"
112   mode 0644
113   variables :base => "minute", :interval => 3600
114 end
115
116 link "/var/lib/replication/hour/data" do
117   to "/store/planet/replication/hour"
118 end
119
120 directory "/var/lib/replication/day" do
121   owner "planet"
122   group "planet"
123   mode 0755
124 end
125
126 template "/var/lib/replication/day/configuration.txt" do
127   source "replication.config.erb"
128   owner "planet"
129   group "planet"
130   mode 0644
131   variables :base => "hour", :interval => 86400
132 end
133
134 link "/var/lib/replication/day/data" do
135   to "/store/planet/replication/day"
136 end
137
138 template "/etc/cron.d/replication" do
139   source "replication.cron.erb"
140   owner "root"
141   group "root"
142   mode 0644
143 end
144
145 directory "/var/lib/replication/streaming" do
146   owner "planet"
147   group "planet"
148   mode 0755
149 end
150
151 directory "/var/log/replication" do
152   owner "planet"
153   group "planet"
154   mode 0755
155 end
156
157 [ "streaming-replicator", "streaming-server" ].each do |name|
158   template "/etc/init.d/#{name}" do
159     source "streaming.init.erb"
160     owner "root"
161     group "root"
162     mode 0755
163     variables :service => name
164   end
165
166   service name do
167     action [ :enable, :start ]
168     supports :restart => true, :status => true
169     subscribes :restart, "template[/etc/init.d/#{name}]"
170   end
171 end