You are not logged in.
I'm able to change a folder's group to 'users':
> chown ci-admin:users .
> ls -Falk
drwxr-xr-x 7 ci-admin users 1 Mar 12 11:11 ./
but I can't change it to group 'hg':
> chown ci-admin:hg .
> ls -Falk
drwxr-xr-x 7 ci-admin nobody 1 Mar 12 11:11 ./
in /etc/group, I have:
hg:x:99:hg,ci-admin
What could cause this?
Google Buzz: http://bit.ly/elifarley-buzz
Google Reader: http://bit.ly/elifarley-reader
Bookmarks: http://delicious.com/elifarley | http://twitter.com/elifarley
Professional info: http://br.linkedin.com/in/elifarley | http://openhatch.org/people/elifarley/
Offline
cat /etc/group | grep ":99:"
nobody:x:99:the package that created the hg group should be fixed, as id 99 is reserved for user nobody.
Offline