Reputation: 64844
I created a group on a Linux machine. Now I am trying to call os.Chown
to change a file's ownership to that new group.
os.Chown
requires me to know the uid
and the gid
:
func Chown(name string, uid, gid int) error
How can I get the gid
for my group? I tried using user.Lookup("groupname")
, but I got "unknown user groupname"
I can call os.Getgroups
, but this only returns me an array of group IDs - it doesn't tell me anything about the mapping between a group name and the group id.
I am guessing there is a Unix utility I can shell out to (parse the result of calling id
) but I'd rather not do that if I can help it.
Upvotes: 2
Views: 2698
Reputation: 239930
Update: As of August 16, 2016, Go 1.7 is released with support for LookupGroup. Upgrading to Go 1.7 is recommended if you want to access information about POSIX groups.
There is a LookupGroup function in the Go 1.7 betas, but it was added only this February and isn't in any released version of Go, so you're kind of out of luck.
As far as I can see your options are:
getgrnam
for the information you need (tricky)/etc/group
(relatively easy... as long as you can guarantee that the info you need actually comes from that file and not LDAP or something).Upvotes: 4