]> git.openstreetmap.org Git - chef.git/blob - cookbooks/backup/recipes/default.rb
Drop segment length limit from tile server replication
[chef.git] / cookbooks / backup / recipes / default.rb
1 #
2 # Cookbook:: backup
3 # Recipe:: default
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 #     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
22 package %w[
23   perl
24   libdate-calc-perl
25   awscli
26 ]
27
28 directory "/store/backup" do
29   owner "osmbackup"
30   group "osmbackup"
31   mode "2755"
32   recursive true
33 end
34
35 %w[planet tile www].each do |service|
36   directory "/store/logs/#{service}.openstreetmap.org" do
37     owner "osmbackup"
38     group "osmbackup"
39     mode "2755"
40     recursive true
41   end
42 end
43
44 cookbook_file "/usr/local/bin/expire-backups" do
45   owner "root"
46   group "root"
47   mode "755"
48 end
49
50 template "/etc/cron.daily/expire-backups" do
51   source "expire.cron.erb"
52   owner "root"
53   group "root"
54   mode "755"
55 end