]> git.openstreetmap.org Git - chef.git/blob - cookbooks/backup/recipes/default.rb
Use multipackage installs throughout
[chef.git] / cookbooks / backup / recipes / default.rb
1 #
2 # Cookbook Name:: 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 #     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 package %w[
21   perl
22   libdate-calc-perl
23 ]
24
25 directory "/store/backup" do
26   owner "osmbackup"
27   group "osmbackup"
28   mode 0o2755
29 end
30
31 cookbook_file "/usr/local/bin/expire-backups" do
32   owner "root"
33   group "root"
34   mode 0o755
35 end
36
37 template "/etc/cron.daily/expire-backups" do
38   source "expire.cron.erb"
39   owner "root"
40   group "root"
41   mode 0o755
42 end