runc/mount/nodes/nodes_unsupported.go

14 lines
220 B
Go
Raw Normal View History

// +build !linux
package nodes
import (
"errors"
2014-06-10 23:14:16 +08:00
"github.com/docker/libcontainer/devices"
)
func CreateDeviceNodes(rootfs string, nodesToCreate []*devices.Device) error {
return errors.New("Unsupported method")
}