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>
10 lines
219 B
Go
10 lines
219 B
Go
// +build linux,!go1.5
|
|
|
|
package libcontainer
|
|
|
|
import "syscall"
|
|
|
|
// GidMappingsEnableSetgroups was added in Go 1.5, so do nothing when building
|
|
// with earlier versions
|
|
func enableSetgroups(sys *syscall.SysProcAttr) {
|
|
}
|