From d9da77eb7d4aa7154f5ac501c48f0f4cc84aba05 Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Fri, 17 Jun 2016 10:56:01 +0200 Subject: [PATCH] rsync --delay-updates should make things more atomic --- example_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_config.py b/example_config.py index 3b9bb1b..ee98faf 100644 --- a/example_config.py +++ b/example_config.py @@ -21,7 +21,7 @@ if __name__ == "__main__": raise SystemExit("Not meant to be run directly!") def _rsync_cmd(dest): - cmd = ("rsync --delete-delay --recursive --times --stats " + cmd = ("rsync --delete-delay --recursive --times --stats --delay-updates " "'{output}/' '{dest}'") return cmd.format(dest=dest, output="{output}")