• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

samba write permissions

Red Squirrel

No Lifer
How can I make it so anything written to a certain shard is chmodded a specific way like 770 or 775 etc.

i tried these, no luck:

create mask = 0770
directory mask = 0770
create mode = 0770
directory mode = 0770

Also tried without the leading 0. None of these do what I want.
 
You're close. Use this instead:

create mask = 0770
directory mask = 0770
force create mode = 0770
force directory mode = 0770

You should really use 0660 for files though, and 0770 for directories only.
 
Back
Top