summaryrefslogtreecommitdiff
path: root/vendor/src/github.com/docker/libcontainer/mount/nodes/nodes_unsupported.go
blob: 83660715d46c62a2357554eebd640ffc57dbd822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build !linux

package nodes

import (
	"errors"

	"github.com/docker/libcontainer/devices"
)

func CreateDeviceNodes(rootfs string, nodesToCreate []*devices.Device) error {
	return errors.New("Unsupported method")
}