I have a samba server set up on an FC8 server, with OSX Leopard and WinXP clients. I have set the force create mode and force directory mode to the permissions I want. The WinXP clients transfers, including created files and copied files get these POSIX permissions set correctly, but the OSX Leopard clients do not on copy. It looks like the Leopard client is reading the attributes from the original file, and chmod the copied file after it is copied to preserve permissions. This is messing up my linux group access to some file on the samba share.
Temporarily, I have set up a chmod -R 0770 /path/ in crontab to run every minute as a temporary work around. I would like to find a solution to make samba either a) disable client chmod or b) force all files to remain 0660 and all directories 0770. Any ideas?
ASKER