From 7b163a6d0023e8e5692cba0729ff55a6aebccc5d Mon Sep 17 00:00:00 2001 From: David Date: Mon, 21 Jan 2019 19:06:33 +0100 Subject: [PATCH] Fix always creating full backups when rsyncing With the row uncommented backup.py always creates full backups and rsyncs them to the destination configured. Commented away backup.py returns to normal and creates incremental backups. However, listing on webgui is still broken. CLI --list and --status now also works. --- management/backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/backup.py b/management/backup.py index e15fbbbf..84d0fe01 100755 --- a/management/backup.py +++ b/management/backup.py @@ -15,7 +15,7 @@ from exclusiveprocess import Lock from utils import load_environment, shell, wait_for_service, fix_boto rsync_ssh_options = [ - "--ssh-options='-i /root/.ssh/id_rsa_miab'", + # "--ssh-options='-i /root/.ssh/id_rsa_miab'", "--rsync-options=-e \"/usr/bin/ssh -oStrictHostKeyChecking=no -oBatchMode=yes -p 22 -i /root/.ssh/id_rsa_miab\"", ]