]> git.openstreetmap.org Git - chef.git/commitdiff
Add a db::backup recipe to handle database backups
authorTom Hughes <tom@compton.nu>
Thu, 20 Jun 2013 17:54:19 +0000 (18:54 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 20 Jun 2013 17:54:19 +0000 (18:54 +0100)
cookbooks/db/recipes/backup.rb [new file with mode: 0644]
cookbooks/db/templates/default/backup-db.erb [new file with mode: 0644]
cookbooks/db/templates/default/backup.cron.erb [new file with mode: 0644]
roles/db-backup.rb [new file with mode: 0644]
roles/ramoth.rb

diff --git a/cookbooks/db/recipes/backup.rb b/cookbooks/db/recipes/backup.rb
new file mode 100644 (file)
index 0000000..00da029
--- /dev/null
@@ -0,0 +1,32 @@
+#
+# Cookbook Name:: db
+# Recipe:: backup
+#
+# Copyright 2013, OpenStreetMap Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+template "/usr/local/bin/backup-db" do
+  source "backup-db.erb"
+  owner "root"
+  group "root"
+  mode 0755
+end
+
+template "/etc/cron.d/backup-db" do
+  source "backup.cron.erb"
+  owner "root"
+  group "root"
+  mode 0644
+end
diff --git a/cookbooks/db/templates/default/backup-db.erb b/cookbooks/db/templates/default/backup-db.erb
new file mode 100644 (file)
index 0000000..3ad1020
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# DO NOT EDIT - This file is being maintained by Chef
+
+D=`date +%Y-%m-%d`
+F=/tmp/osm-${D}.dmp
+
+pg_dump --user=backup --format=custom --file=$F openstreetmap
+
+rsync $F backup.openstreetmap.org::backup
+
+rm -f $F
diff --git a/cookbooks/db/templates/default/backup.cron.erb b/cookbooks/db/templates/default/backup.cron.erb
new file mode 100644 (file)
index 0000000..49f1ce1
--- /dev/null
@@ -0,0 +1,3 @@
+# DO NOT EDIT - This file is being maintained by Chef
+
+00 02 * * 1 osmbackup /usr/local/bin/backup-db
diff --git a/roles/db-backup.rb b/roles/db-backup.rb
new file mode 100644 (file)
index 0000000..6fab59d
--- /dev/null
@@ -0,0 +1,14 @@
+name "db-backup"
+description "Role applied to the server responsible for database backups"
+
+default_attributes(
+  :accounts => {
+    :users => {
+      :osmbackup => { :status => :role }
+    }
+  }
+)
+
+run_list(
+  "recipe[db::backup]"
+)
index f93a38d58659e5cbbe4953c3682c241e66d0bffb..17553f5d310d57caa5c8abefe556e80572c4fb35 100644 (file)
@@ -2,11 +2,6 @@ name "ramoth"
 description "Master role applied to ramoth"
 
 default_attributes(
-  :accounts => {
-    :users => {
-      :osmbackup => { :status => :role }
-    }
-  },
   :db => {
     :cluster => "9.1/main"
   },