You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has more to do with file uploading and ensuring the file has the right permissions & ownership. Apparently if there's a setbit on the HOME directory, but not on tmp when the file is moved from tmp to somewhere else like your HOME the setbit on the HOME isn't being respected by move when it would be respected by a copy operation.
Seems like the best solution is to traverse the parents and see if there are setbits set and try to adhere to them. We could of course copy instead of move but that's likely expensive.
The text was updated successfully, but these errors were encountered:
From discourse: https://discourse.openondemand.org/t/file-upload-and-posix-acl-support-updated/3783/7
This has more to do with file uploading and ensuring the file has the right permissions & ownership. Apparently if there's a setbit on the HOME directory, but not on tmp when the file is moved from tmp to somewhere else like your HOME the setbit on the HOME isn't being respected by move when it would be respected by a copy operation.
Seems like the best solution is to traverse the parents and see if there are setbits set and try to adhere to them. We could of course copy instead of move but that's likely expensive.
The text was updated successfully, but these errors were encountered: