# Based on incremental-backup 0.1 by Matteo Mattei
#
# Copyright 2006 Matteo Mattei <matteo.mattei@gmail.com>
-# Copyright 2007, 2008, 2009, 2010, 2011 Bernie Innocenti <bernie@codewiz.org>
+# Copyright 2007, 2008, 2009, 2010, 2011, 2012 Bernie Innocenti <bernie@codewiz.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# Destination directory (will be created if it doesn't exist)
DEST=$1; shift
+CONF_FILE="/etc/wizbackup/wizbackup.conf"
+
# NOTE: --timeout needs to be large enough: if a large dir tree don't change a lot of time can pass without I/O
# NOTE: --inplace will clobber linked files in older snapshots. DON'T USE IT!
RSYNC_OPTS="-HAXa --stats --timeout 1800 --numeric-ids --delete --delete-excluded --ignore-errors $@"
DATE=`date +"%Y%m%d"`
DEST="`echo $DEST | sed -e 's/\/$//'`"
+if [ -f "$CONF_FILE" ]; then
+ source /etc/wizbackup/wizbackup.conf
+fi
# Use "backup" ssh key with ssh protocol, or password file for rsync protocol
if [ "${SRC%:*}" == "rsync" ]; then
do_prune()
{
- local old="`ls | grep -v tmp | head -n -$SNAPSHOTS`"
+ local old=`ls | grep -v tmp | head -n -$SNAPSHOTS | tr '\n' ' '`
if [ ! -z "$old" ]; then
echo "$(date): Removing oldest snapshot(s): $old..."
- rm -rf "$old" || exit 669
+ rm -rf $old || exit 669
fi
}
do_link()
{
- local newest=`ls | grep -v tmp | tail -n 1`
+ local newest=`ls | grep -v tmp | tail -n 1`
if [ -d "$DEST/tmp" ]; then
echo "$(date): Continuing with pre-existing snapshot $DEST/tmp"
elif [ -z "$newest" ]; then
# make sure to be root
if (( `id -u` != 0 )); then { echo "Sorry, must be root. Exiting..."; exit; } fi
-echo "$(date): BEGIN backup: $SRC -> $DEST"
+echo "$(date): BEGIN backup: $0 $@"
echo "$(date): $0 $SRC $DEST $@"
do_init
do_prune