From d630c3da151a49f09f2d17b0a9247e0738a13a15 Mon Sep 17 00:00:00 2001 From: Andrea Veri Date: Sat, 28 Dec 2013 18:57:09 +0000 Subject: [PATCH] GNOME Backups: double-quotes on the mail call --- 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 90883d9d87..585968e788 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-filelist $BACKUP_DIR/excludes/$MACHINE.exclude $MACHINE::/ $BACKUP_DIR/$MACHINE/ | mail -s 'Daily backup: $MACHINE' backups@gnome.org + rdiff-backup --force --remote-schema 'ssh -F /usr/local/etc/gnome_ssh_config %s rdiff-backup --server' --print-statistics --exclude-device-files --exclude-filelist $BACKUP_DIR/excludes/$MACHINE.exclude $MACHINE::/ $BACKUP_DIR/$MACHINE/ | mail -s "Daily backup: $MACHINE" backups@gnome.org done