Re: /tmp sticky bit differences on FreeBSD 8

2009-09-16 Thread Leandro Quibem Magnabosco
Artis Caune escreveu: 2009/9/16 Matthew Seaman [1]: On FreeBSD 6,7 files are created with wheel group, but on 8 - with `gid`. It seems that ZFS uses SysV group semantics (new files get the 1ary group of the user unless the directory is set to SGID). UFS filesystems on 8.x still behave in

Re: /tmp sticky bit differences on FreeBSD 8

2009-09-16 Thread Artis Caune
2009/9/16 Matthew Seaman : >> On FreeBSD 6,7 files are created with wheel group, but on 8 - with `gid`. > > It seems that ZFS uses SysV group semantics (new files get the 1ary group of > the user unless the directory is set to SGID).  UFS filesystems on 8.x still > behave in the expected BSD way (n

Re: /tmp sticky bit differences on FreeBSD 8

2009-09-16 Thread Matthew Seaman
Matthew Seaman wrote: still behave in the expected BSD way (new files get the same group as the directory unless the user is not a member of that group, when they get the users' 1ary group). Errr... Correction. New files get the same group as the directory. Cheers, Matthew -

Re: /tmp sticky bit differences on FreeBSD 8

2009-09-16 Thread Matthew Seaman
Artis Caune wrote: Hi, can someone point me to what has changed in file creation modes in /tmp directory? # FreeBSD 6, 7: $ cd /tmp; id; touch testfile; mkdir testdir; ls -la uid=65534(nobody) gid=65534(nobody) groups=65534(nobody) drwxr-xr-x 2 nobody wheel 2 Sep 16 22:10 testdir -rw-r--r-

/tmp sticky bit differences on FreeBSD 8

2009-09-16 Thread Artis Caune
Hi, can someone point me to what has changed in file creation modes in /tmp directory? # FreeBSD 6, 7: $ cd /tmp; id; touch testfile; mkdir testdir; ls -la uid=65534(nobody) gid=65534(nobody) groups=65534(nobody) drwxr-xr-x 2 nobody wheel 2 Sep 16 22:10 testdir -rw-r--r-- 1 nobody wheel