[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Savannah-hackers-public] download access for uploading files broken
From: |
Assaf Gordon |
Subject: |
Re: [Savannah-hackers-public] download access for uploading files broken |
Date: |
Fri, 24 Feb 2017 19:57:32 +0000 |
User-agent: |
Mutt/1.5.23 (2014-03-12) |
Hello Bob,
Thanks for fixing the NFS last night! (glad we found the solution).
On Fri, Feb 24, 2017 at 02:36:13AM -0700, Bob Proulx wrote:
But that does not appear to be it. I wrote a small test program to
acquire locks over the nfs mount and that seems to be working
perfectly. Therefore I not know why rsync is not happy.
I have a hunch it relates to setting group ownership.
Notice the following:
1. Uploading a simple file works:
rsync hello.txt address@hidden:/releases/test-project/
2. Uploading with "-a" hangs:
rsync -a hello.txt address@hidden:/releases/test-project/
3. "-a" is equal to "-rlptgoD",
and with a bit of trial-and-error, removing the '-g" works:
rsync -rlptoD hello.txt address@hidden:/releases/test-project/
If this helps in any way - great.
If not, I'll add some 'strace'ing on the server-side rsync to see
if I can learn more - but that will only be later tonight.
regards,
- assaf