mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
603c151e6c
This moves the ambient capability support behind an `ambient` build tag so that it is only compiled upon request. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
8 lines
180 B
Go
8 lines
180 B
Go
// +build linux,ambient
|
|
|
|
package libcontainer
|
|
|
|
import "github.com/syndtr/gocapability/capability"
|
|
|
|
const allCapabilityTypes = capability.CAPS | capability.BOUNDS | capability.AMBS
|