65eec38754
vndr was previously removing .go files in runc/libcontainer since they weren't used anywhere in cri-o, but kpod stats will use them Signed-off-by: Ryan Cole <rcyoalne@gmail.com>
11 lines
293 B
Go
11 lines
293 B
Go
// +build linux,go1.5
|
|
|
|
package libcontainer
|
|
|
|
import "syscall"
|
|
|
|
// Set the GidMappingsEnableSetgroups member to true, so the process's
|
|
// setgroups proc entry wont be set to 'deny' if GidMappings are set
|
|
func enableSetgroups(sys *syscall.SysProcAttr) {
|
|
sys.GidMappingsEnableSetgroups = true
|
|
}
|