when "MOVE"ing folders/files from dept share to pub share the folder/files retain the dept group ownership however if I "COPY" instead of using "Move" the folders/files group ownership will change to the pub group How do I get the same behavior to work with "Move"?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 01/31/2007 08:49 PM, M Azer wrote:> when "MOVE"ing folders/files from dept share to pub share the > folder/files retain the dept group ownership however if I > "COPY" instead of using "Move" the folders/files group > ownership will change to the pub group > > How do I get the same behavior to work with "Move"?How is your smb.conf with regards to these shares? Kind regards, - -- Felipe Augusto van de Wiel <felipe@paranacidade.org.br> Coordenadoria de Tecnologia da Informa??o (CTI) - SEDU/PARANACIDADE http://www.paranacidade.org.br/ Phone: (+55 41 3350 3300) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFwepECj65ZxU4gPQRAq1+AJ9sQotC1QBv77RIsOhlDjQIf5IECwCgs17x 5dnV6kPbdIEsEgkxeRfi5xA=sce3 -----END PGP SIGNATURE-----
[shares] comment = Deptartments Share path = /shares/ public = no browseable = yes writable = yes directory mask = 0770 create mask = 0770 under [share] i have the following 4 folders: [root@itbox shares]# ls -l drwxrws--- 2 root devel 4096 Jan 31 17:41 devel drwxrws--- 3 root finance 4096 Jan 31 16:49 fin drwxrws--- 4 root it 4096 Jan 31 17:22 it drwxrws--- 4 root Domain Users 4096 Jan 31 17:41 pub as you can see each folder is owned by its group and chmod g+s is set on all the folders to keep the group ownership to newly created folders/files Thanks for the reply On 2/1/07, Felipe Augusto van de Wiel <felipe@paranacidade.org.br> wrote:> > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > On 01/31/2007 08:49 PM, M Azer wrote: > > when "MOVE"ing folders/files from dept share to pub share the > > folder/files retain the dept group ownership however if I > > "COPY" instead of using "Move" the folders/files group > > ownership will change to the pub group > > > > How do I get the same behavior to work with "Move"? > > How is your smb.conf with regards to these shares? > > > Kind regards, > > - -- > Felipe Augusto van de Wiel <felipe@paranacidade.org.br> > Coordenadoria de Tecnologia da Informa??o (CTI) - SEDU/PARANACIDADE > http://www.paranacidade.org.br/ Phone: (+55 41 3350 3300) > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFFwepECj65ZxU4gPQRAq1+AJ9sQotC1QBv77RIsOhlDjQIf5IECwCgs17x > 5dnV6kPbdIEsEgkxeRfi5xA> =sce3 > -----END PGP SIGNATURE----- > -- > To unsubscribe from this list go to the following URL and read the > instructions: https://lists.samba.org/mailman/listinfo/samba >-- "Unless you try to do something beyond what you have already mastered, you will never grow." Ronald E. Osborn
Apparently, when you use MOVE or drag-n-drop in Explorer and the source dir and dest dir on the samba server are in the same filesystem, smb will essentially do a Unix mv command. Thus the file will retain the original permissions and ownership. As long as the user could write to the dir, it would ignore setguid, share modes, ACLs, etc. We had a special directory setup to pass docs on to another group and occasionally users would forget to COPY and not MOVE the files there. I used a dnotify script on the samba server to monitor that dir and change perms when new stuff showed up. The other group could then delete the files. M Azer wrote:> [shares] > comment = Deptartments Share > path = /shares/ > public = no > browseable = yes > writable = yes > directory mask = 0770 > create mask = 0770 > > under [share] i have the following 4 folders: > > [root@itbox shares]# ls -l > drwxrws--- 2 root devel 4096 Jan 31 17:41 devel > drwxrws--- 3 root finance 4096 Jan 31 16:49 fin > drwxrws--- 4 root it 4096 Jan 31 17:22 it > drwxrws--- 4 root Domain Users 4096 Jan 31 17:41 pub > > as you can see each folder is owned by its group and chmod g+s is set > on all > the folders to keep the group ownership to newly created folders/files > > Thanks for the reply > > On 2/1/07, Felipe Augusto van de Wiel <felipe@paranacidade.org.br> wrote: >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> >> On 01/31/2007 08:49 PM, M Azer wrote: >> > when "MOVE"ing folders/files from dept share to pub share the >> > folder/files retain the dept group ownership however if I >> > "COPY" instead of using "Move" the folders/files group >> > ownership will change to the pub group >> > >> > How do I get the same behavior to work with "Move"? >> >> How is your smb.conf with regards to these shares? >> >> >> Kind regards, >> >> - -- >> Felipe Augusto van de Wiel <felipe@paranacidade.org.br> >> Coordenadoria de Tecnologia da Informa??o (CTI) - SEDU/PARANACIDADE >> http://www.paranacidade.org.br/ Phone: (+55 41 3350 3300) >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.6 (GNU/Linux) >> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org >> >> iD8DBQFFwepECj65ZxU4gPQRAq1+AJ9sQotC1QBv77RIsOhlDjQIf5IECwCgs17x >> 5dnV6kPbdIEsEgkxeRfi5xA>> =sce3 >> -----END PGP SIGNATURE----- >> -- >> To unsubscribe from this list go to the following URL and read the >> instructions: https://lists.samba.org/mailman/listinfo/samba >> > > >-- -Toby