Hello there
I've ran into a pickle regarding permissions and ACL. My users has a folder called "UVdokumenter", in wich they want to put documents up for sharing and editing. Everyone needs to be able to edit the files in that folder, so i set the ACL to this:
Code:
# file: UVdokumenter/
# owner: fleten
# group: sambashare
user::rwx
group::rwx
mask::rwx
other::---
default:user::rwx
default:group::rwx
default:group:sambashare:rwx
default:mask::rwx
default:other::rwx
This works wonderfully, if the files are created in the folder. My trouble is, i would like for any files copied to the folder to inherit those permissions. Reading around, it would seem like ACL's dont bend that way. Is there a clever way for me to work around this? Or am i missing something obvious?
Regards, and thanks in advance