Signed-off-by: Lei Jitang <leijitang@huawei.com> Upstream-commit: 57d12a0e0aca49ddd4baad3d37b77f31d63ff70b Component: engine
16 lines
495 B
Go
16 lines
495 B
Go
package sysinfo
|
|
|
|
// SysInfo stores information about which features a kernel supports.
|
|
// TODO Windows: Factor out platform specific capabilities.
|
|
type SysInfo struct {
|
|
MemoryLimit bool
|
|
SwapLimit bool
|
|
CpuCfsPeriod bool
|
|
CpuCfsQuota bool
|
|
IPv4ForwardingDisabled bool
|
|
AppArmor bool
|
|
OomKillDisable bool
|
|
BridgeNfCallIptablesDisabled bool
|
|
BridgeNfCallIp6tablesDisabled bool
|
|
}
|