From dd4aa27279f29e8cf3ef080214efac7749f66e2e Mon Sep 17 00:00:00 2001 From: Andrea Veri Date: Mon, 6 Jan 2014 19:40:37 +0000 Subject: [PATCH] GNOME Backups: drop the --force flag, the first rdiff-backup run will end soon with success --- files/gnome/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/gnome/backup.sh b/files/gnome/backup.sh index 022499980d..70580eaea6 100644 --- a/files/gnome/backup.sh +++ b/files/gnome/backup.sh @@ -35,5 +35,5 @@ LOGS_DIR='/fedora_backups/gnome/logs' for MACHINE in $MACHINES; do rsync -avz -e 'ssh -F /usr/local/etc/gnome_ssh_config' --bwlimit=2000 $MACHINE:/etc/rsyncd/backup.exclude $BACKUP_DIR/excludes/$MACHINE.exclude - rdiff-backup --force --remote-schema 'ssh -F /usr/local/etc/gnome_ssh_config %s rdiff-backup --server' --print-statistics --exclude-device-files --exclude /selinux --exclude /sys --exclude /proc --exclude-globbing-filelist $BACKUP_DIR/excludes/$MACHINE.exclude $MACHINE::/ $BACKUP_DIR/$MACHINE/ | mail -s "Daily backup: $MACHINE" backups@gnome.org + rdiff-backup --remote-schema 'ssh -F /usr/local/etc/gnome_ssh_config %s rdiff-backup --server' --print-statistics --exclude-device-files --exclude /selinux --exclude /sys --exclude /proc --exclude-globbing-filelist $BACKUP_DIR/excludes/$MACHINE.exclude $MACHINE::/ $BACKUP_DIR/$MACHINE/ | mail -s "Daily backup: $MACHINE" backups@gnome.org done