2017-11-01 19:37:53 -04:00
|
|
|
// +build !linux,!windows,!freebsd
|
2015-01-15 16:40:39 -05:00
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package graphdriver // import "github.com/docker/docker/daemon/graphdriver"
|
2015-01-15 16:40:39 -05:00
|
|
|
|
2015-04-24 15:35:51 -04:00
|
|
|
var (
|
2017-11-15 16:54:56 -05:00
|
|
|
// List of drivers that should be used in an order
|
|
|
|
priority = "unsupported"
|
2015-04-24 15:35:51 -04:00
|
|
|
)
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// GetFSMagic returns the filesystem id given the path.
|
2015-01-15 16:40:39 -05:00
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
|
|
return FsMagicUnsupported, nil
|
|
|
|
}
|