Lines Matching full:gid
26 // gid holds the gid for the base user in this namespace (defaults to getgid).
27 gid int member
29 // uidMap holds the namespace mapping of gid values.
36 gid = flag.Int("gid", -1, "gid of the hosting user") var
42 gids = flag.String("gids", "", "comma separated GID ranges to map contiguously (req. CAP_SETGID)")
138 gid: syscall.Getgid(),
151 switch *gid {
153 detail.gid = thisGID
155 detail.gid = *gid
157 detail.gidMap = parseRanges(&detail, *gids, detail.gid)
182 if thisGID != detail.gid {
183 w.SetGroups(detail.gid, nil)