mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f350b53241
ref: https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
18 lines
406 B
Go
18 lines
406 B
Go
// +build !linux,!freebsd,!windows
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/config"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
const platformSupported = false
|
|
|
|
func setupResolvConf(config *config.Config) {
|
|
}
|
|
|
|
// RawSysInfo returns *sysinfo.SysInfo .
|
|
func (daemon *Daemon) RawSysInfo(quiet bool) *sysinfo.SysInfo {
|
|
return sysinfo.New(quiet)
|
|
}
|