The server dir is mounted with a user, who definitely has "Write Attributes" permissions in Windows.
/etc/fstab:
//server/shared /mnt/fs1 cifs noperm,rw,nounix,iocharset=utf8,gid=java,file_mode=0774,dir_mode=0775,credentials=/localhome/securedir/fs1.credentials 0 0
The mounted files are directories are readable and writeable.
Changing timestamp of a file works:
> touch -t 01010101 /mnt/fs1/test.file
Changing timestamp of a directory results into "Permission denied":
> touch -t 01010101 /mnt/fs1/baselines
touch: setting times of `/mnt/fs1/baselines': Permission denied
Are there any other mounting options I have to apply? Thanks!