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