source: trunk/packages/xvm-db-backup/xvm-db-backup @ 2536

Last change on this file since 2536 was 2536, checked in by broder, 15 years ago

In xvm-db-backup:

  • Let the config file specify a list of tables to exclude from the backup.
  • Property svn:executable set to *
File size: 779 bytes
RevLine 
[1656]1#!/bin/bash
2
3set -e
4
5kinit -k "daemon/$(hostname -f)"
6aklog sipb
7
[2257]8db_filename="/mit/xvm/backups/db/prod/$(date +%Y/%m/%d.%H%M.sql.gz)"
[2254]9mkdir -p "$(dirname $db_filename)"
[1656]10
[2536]11exclude=()
12if invirt-getconf db.backup_exclude &>/dev/null; then
13    for i in invirt-getconf -l db.backup_exclude; do
14        exclude=("${exclude[@]}" -T "$(invirt-getconf "db.backup_exclude.$i")")
15    done
16fi
[1656]17/usr/bin/pg_dump -U "$(invirt-getconf db.user)" \
18                 -h "$(invirt-getconf db.host)" \
[2536]19                 "${exclude[@]}" \
[1711]20                 "$(invirt-getconf db.dbname)" | gzip - >"$db_filename"
21
[2257]22running_filename="/mit/xvm/log/running/prod/$(date +%Y/%m/%d.%H%M.gz)"
[2259]23mkdir -p "$(dirname $running_filename)"
[1711]24
25remctl "$(invirt-getconf remote.hostname)" web listvms | gzip - >"$running_filename"
Note: See TracBrowser for help on using the repository browser.