]> git.openstreetmap.org Git - chef.git/blob - cookbooks/backup/recipes/default.rb
794f8e51eb0494530df0bf23ba417e93c880dd78
[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 ]
26
27 directory "/store/backup" do
28   owner "osmbackup"
29   group "osmbackup"
30   mode 0o2755
31   recursive true
32 end
33
34 cookbook_file "/usr/local/bin/expire-backups" do
35   owner "root"
36   group "root"
37   mode 0o755
38 end
39
40 template "/etc/cron.daily/expire-backups" do
41   source "expire.cron.erb"
42   owner "root"
43   group "root"
44   mode 0o755
45 end