2018-02-05 21:05:59 +00:00
|
|
|
package graphdriver // import "github.com/docker/docker/daemon/graphdriver"
|
2015-04-24 19:35:51 +00:00
|
|
|
|
|
|
|
var (
|
2017-11-15 21:54:56 +00:00
|
|
|
// List of drivers that should be used in order
|
|
|
|
priority = "windowsfilter"
|
2015-04-24 19:35:51 +00:00
|
|
|
)
|
|
|
|
|
2015-07-21 22:21:05 +00:00
|
|
|
// GetFSMagic returns the filesystem id given the path.
|
2015-04-24 19:35:51 +00:00
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
2015-05-26 19:45:08 +00:00
|
|
|
// Note it is OK to return FsMagicUnsupported on Windows.
|
|
|
|
return FsMagicUnsupported, nil
|
2015-04-24 19:35:51 +00:00
|
|
|
}
|