aboutsummaryrefslogtreecommitdiff
path: root/handlers/rdiff
diff options
context:
space:
mode:
authorElijah Saxon <elijah@riseup.net>2004-12-09 04:37:12 +0000
committerElijah Saxon <elijah@riseup.net>2004-12-09 04:37:12 +0000
commitef78e14b29df0a9f010c3c2a07572bef5668d079 (patch)
tree4387d38537791ae7b3bc88e52995c35d17bcde7d /handlers/rdiff
downloadbackupninja-ef78e14b29df0a9f010c3c2a07572bef5668d079.tar.gz
backupninja-ef78e14b29df0a9f010c3c2a07572bef5668d079.tar.bz2
moved all to trunk
Diffstat (limited to 'handlers/rdiff')
-rw-r--r--handlers/rdiff116
1 files changed, 116 insertions, 0 deletions
diff --git a/handlers/rdiff b/handlers/rdiff
new file mode 100644
index 0000000..1f2058f
--- /dev/null
+++ b/handlers/rdiff
@@ -0,0 +1,116 @@
+#
+# rdiff-backup handler script for backupninja
+# requires rdiff-backup
+#
+
+setsection source
+getconf type; sourcetype=$type
+getconf label
+getconf user; sourceuser=$user
+getconf keep
+getconf include
+getconf exclude
+
+### DESTINATION ###
+
+setsection dest
+getconf directory; destdir=$directory
+# strip trailing /
+destdir=${destdir%/}
+getconf type; desttype=$type
+getconf user; destuser=$user
+getconf host; desthost=$host
+
+[ "$destdir" != "" ] || fatal "Destination directory not set"
+[ "$desttype" == "remote" ] || fatal "Only remote destinations are supported"
+
+# see if we can login
+debug 0 "su $sourceuser -c \"ssh -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'\""
+if [ ! $test ]; then
+ result=`su $sourceuser -c "ssh -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'" 2>&1`
+ if [ "$result" != "1" ]; then
+ fatal "Can't connect to $desthost as $destuser."
+ fi
+fi
+
+# see that rdiff-backup has the same version as here
+debug 0 "su $sourceuser -c \"ssh $desthost -l $destuser '$RDIFFBACKUP -V'\""
+if [ ! $test ]; then
+ remoteversion=`su $sourceuser -c "ssh $desthost -l $destuser '$RDIFFBACKUP -V'" 2>&1`
+ localversion=`$RDIFFBACKUP -V`
+ if [ "$remoteversion" != "$localversion" ]; then
+ fatal "rdiff-backup does not have the same version on this computer and the backup server."
+ fi
+fi
+
+execstr_serverpart="$destuser@$desthost::$destdir/$label"
+
+### SOURCE ###
+
+[ "$label" != "" ] || fatal "Source missing label"
+[ "$sourcetype" == "local" ] || fatal "Only local source type supported"
+[ "$include" != "" ] || fatal "No source includes specified"
+
+execstr_clientpart="/"
+
+## REMOVE OLD BACKUPS
+
+if [ "$keep" -gt "0" ]; then
+ removestr="rdiff-backup --force --remove-older-than ${keep}D "
+ if [ "$desttype" == "remote" ]; then
+ removestr="${removestr}${destuser}@${desthost}::"
+ fi
+ removestr="${removestr}${destdir}/${label}";
+
+ debug 0 "su $sourceuser -c '$removestr'"
+ if [ ! $test ]; then
+ output=`su $sourceuser -c "$removestr" 2>&1`
+ code=$?
+ if [ "$code" == "0" ]; then
+ debug 0 $output
+ debug 1 "Removing backups older than $keep days succeeded."
+ else
+ debug 2 $output
+ debug 2 "Failed removing backups older than $keep."
+ fi
+ fi
+fi
+
+## EXECUTE ##
+
+execstr="$RDIFFBACKUP --print-statistics "
+
+# TODO: order the includes and excludes
+
+# excludes
+for i in $exclude; do
+ str="${i//__star__/*}"
+ execstr="${execstr}--exclude '$str' "
+done
+
+# includes
+for i in $include; do
+ str="${i//__star__/*}"
+ execstr="${execstr}--include '$str' "
+done
+
+# exclude everything else
+execstr="${execstr}--exclude '/*' "
+
+# include client-part and server-part
+execstr="${execstr}$execstr_clientpart $execstr_serverpart"
+
+debug 0 "su $sourceuser -c '$execstr'"
+if [ ! $test ]; then
+ output=`su $sourceuser -c "$execstr" 2>&1`
+ code=$?
+ if [ "$code" == "0" ]; then
+ debug 0 $output
+ debug 1 "Successfully finished backing up source '$label'"
+ else
+ debug 2 $output
+ debug 2 "Failed backup up source '$label'"
+ fi
+fi
+
+return 0