Rob Bosch
2008-Jan-30 15:37 UTC
--partial replaces destination file on interrupted transfer
I had a case where I was using the --partial option (client is running rsync-pre5, server daemon is rsync-pre8). The transfer was interrupted and the partially transferred file replaced the destination file on the server. My understanding is that the partially transferred file would be kept but it would not replace the destination file...that is, both files would be kept so that rsync could pick up where it left off. Details: Client - rsync-pre5 with preallocation.diff, ignore-case.diff patches applied running on cygwin Server - rsync-pre8 with ignore-case.diff patch applied, running on CentOS 5 Full client command line options: -ruvity --partial --super --ignore-case --ignore-errors --stats --delete-during --exclude-from=DiffExclude.txt Rob
Matt McCutchen
2008-Jan-30 15:52 UTC
--partial replaces destination file on interrupted transfer
On Wed, 2008-01-30 at 08:36 -0700, Rob Bosch wrote:> My understanding is that the partially transferred file would be kept but it > would not replace the destination file...that is, both files would be kept > so that rsync could pick up where it left off.To get this behavior, use --partial-dir instead of --partial. Matt