]> git.openstreetmap.org Git - chef.git/blob - cookbooks/backup/recipes/default.rb
Add missing python-git dep to supybot cookbook
[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 directory "/store/backup" do
21   owner "osmbackup"
22   group "osmbackup"
23   mode 02755
24 end
25
26 cookbook_file "/usr/local/bin/expire-backups" do
27   owner "root"
28   group "root"
29   mode 0755
30 end
31
32 template "/etc/cron.daily/expire-backups" do
33   source "expire.cron.erb"
34   owner "root"
35   group "root"
36   mode 0755
37 end