Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael) Upstream-commit: 34c05c58c8d41ee2bb02cd8059e9928ee2f061ea Component: engine
12 lines
207 B
Go
12 lines
207 B
Go
// +build !linux
|
|
|
|
package nodes
|
|
|
|
import "github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
var DefaultNodes = []string{}
|
|
|
|
func GetHostDeviceNodes() ([]string, error) {
|
|
return nil, libcontainer.ErrUnsupported
|
|
}
|