I have a folder /stuff that is owned by root:stuff with setgid set so all new folders' have group set to stuff.
I want it so:
- New files have 
rw-rw----:- User: read and write
 - Group: read and write
 - Other: none
 
 - New folders have 
rwxrwx---:- User: read, write, and execute
 - Group: read, write, and execute
 - Other: none
 
 
If I set default ACLs with setfacl then it seems to apply to both files and folders. For me, this is fine for Other since both files and folders get no permissions:
setfacl -d -m o::---- /stuff
But what do I do for User and Group? If I do something like above then it will be set on all files and folders.
And I can't use umask.
I have a shared drive. I am trying to make it so folks in stuff can read/write/execute but nobody else (Other) can. And I wan to make sure that by default files do not get the execute bit set, regardless of what the account's umask is.
Xinstead ofxas the mode.