2014-01-15 22:36:13 +00:00
|
|
|
package sysinfo
|
|
|
|
|
2015-03-27 03:05:07 +00:00
|
|
|
// SysInfo stores information about which features a kernel supports.
|
2015-05-14 16:05:14 +00:00
|
|
|
// TODO Windows: Factor out platform specific capabilities.
|
2014-01-15 22:36:13 +00:00
|
|
|
type SysInfo struct {
|
|
|
|
MemoryLimit bool
|
|
|
|
SwapLimit bool
|
2015-04-08 08:58:59 +00:00
|
|
|
CpuCfsPeriod bool
|
2015-04-20 15:16:47 +00:00
|
|
|
CpuCfsQuota bool
|
2014-01-15 22:36:13 +00:00
|
|
|
IPv4ForwardingDisabled bool
|
|
|
|
AppArmor bool
|
2015-02-26 11:53:55 +00:00
|
|
|
OomKillDisable bool
|
2014-01-15 22:36:13 +00:00
|
|
|
}
|