source: tools/snapshot-sync.sh@ 373

Last change on this file since 373 was 346, checked in by Rick van der Zwet, 13 years ago

Compress data during transfer.

  • Property svn:executable set to *
File size: 790 bytes
Line 
1#!/bin/sh
2#
3# $Id$
4#
5# Sync the snapshot files to the local archive
6#
7# Rick van der Zwet <info@rickvanderzwet.nl>
8
9
10FQDN=${1:-tyan.wirelessleiden.nl}
11HOSTID=`echo $FQDN | awk -F "." '{print $1}'`
12
13DIRS=${2:-"configbackup mysqlbackup"}
14BACKUP_USER=${BACKUP_USER:-${3:-backup}}
15SSH_KEY=${4:-/root/.ssh/backup.key}
16
17EXCLUDES=`dirname $0`/excludes
18
19SNAPSHOTROOT="/usr/backup/$HOSTID"
20
21# Deleting will be done manually to avoid whipe-outs.
22OPTS="--force --ignore-errors --archive --compress"
23
24
25if [ -r $EXCLUDES ]; then
26 OPTS="$OPTS --exclude-from=$EXCLUDES"
27fi
28
29
30for DIR in $DIRS; do
31 TARGET=$SNAPSHOTROOT/$DIR
32 SOURCE=/usr/backup/$HOSTID/$DIR
33 mkdir -p $TARGET || exit 1
34
35 # now the actual transfer
36 rsync --rsh="ssh -i $SSH_KEY -l $BACKUP_USER" $OPTS $FQDN:$SOURCE $TARGET
37
38done
Note: See TracBrowser for help on using the repository browser.