mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00
Merge pull request #7871 from rhatdan/gid
Add additionalGIDs from users in rootless mode
This commit is contained in:
@ -415,8 +415,9 @@ func (c *Container) generateSpec(ctx context.Context) (*spec.Spec, error) {
|
||||
}
|
||||
|
||||
// Look up and add groups the user belongs to, if a group wasn't directly specified
|
||||
if !rootless.IsRootless() && !strings.Contains(c.config.User, ":") {
|
||||
if !strings.Contains(c.config.User, ":") {
|
||||
for _, gid := range execUser.Sgids {
|
||||
// FIXME: We need to add a flag to containers.conf to not add these for HPC Users.
|
||||
g.AddProcessAdditionalGid(uint32(gid))
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user