2021-08-23 13:14:53 +00:00
|
|
|
//go:build !linux && !freebsd && !windows
|
2017-11-01 23:37:53 +00:00
|
|
|
// +build !linux,!freebsd,!windows
|
2015-08-07 16:33:29 +00:00
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2020-03-10 12:09:25 +00:00
|
|
|
|
|
|
|
import (
|
2022-10-17 10:47:25 +00:00
|
|
|
"errors"
|
|
|
|
|
2020-03-10 12:09:25 +00:00
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
|
|
)
|
2015-08-07 16:33:29 +00:00
|
|
|
|
2022-10-17 10:47:25 +00:00
|
|
|
func checkSystem() error {
|
|
|
|
return errors.New("the Docker daemon is not supported on this platform")
|
2018-07-17 19:11:38 +00:00
|
|
|
}
|
2020-03-10 12:09:25 +00:00
|
|
|
|
2022-10-17 10:47:25 +00:00
|
|
|
func setupResolvConf(_ *interface{}) {}
|
|
|
|
|
|
|
|
func getSysInfo(_ *Daemon) *sysinfo.SysInfo {
|
2022-06-03 15:35:23 +00:00
|
|
|
return sysinfo.New()
|
2020-03-10 12:09:25 +00:00
|
|
|
}
|