1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-08-15 06:10:55 +00:00

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.
This commit is contained in:
David 2019-01-21 19:06:33 +01:00 committed by GitHub
parent c60e3dc842
commit 7b163a6d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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\"",
]