mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
293 B
Go
12 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
|
|
}
|