Want details of different rsync protocol versions

2013-01-10 Thread akshay patil
Hello, I am studying rsync to do project on it. I want to get more details about rsync protocol versions I found major versions like 23,24,29,30 and in latest code protocol version 31. versions in code where important decisions are taken. I also searched for RFC of rsync protocol and I found RFC

Re: Does rsync need a --ignore-unreadable-files option?

2013-01-10 Thread Karl O. Pinc
Hi, On 01/10/2013 08:07:18 PM, Allen Supynuk wrote: > It strikes me though, that what I really want is an rsync option > '--ignore-files-with-no-read-perms'. While you're at it, why not a more generic --ignore-errno foo where foo is (a defined subset of) the Posix error numbers listed in errno(

Re: Does rsync need a --ignore-unreadable-files option?

2013-01-10 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am not really sure what you are requesting here. Rsync does continue after it encounters a permission denied error. It just can't copy that particular file/directory but it will continue on through the tree. The reason for the second error message

Does rsync need a --ignore-unreadable-files option?

2013-01-10 Thread Allen Supynuk
I work on software that archives gigabytes of files to multiple sites. Occasionally one or two files have no read permissions: % ls -l dir/foo --w---+ 1 abcserve myusers 11222 Jan 10 03:14 The error message is: rsync: send_files failed to open "/dir/foo" (in xxx): Permission denied (13) rsy