Signed-off-by: Alexey Guskov <lexag@mail.ru> Upstream-commit: 26c03d561ab126287bb3034cc23477d18869a888 Component: engine
15 lines
247 B
Go
15 lines
247 B
Go
// +build !linux,!windows,!freebsd
|
|
|
|
package graphdriver
|
|
|
|
var (
|
|
// Slice of drivers that should be used in an order
|
|
priority = []string{
|
|
"unsupported",
|
|
}
|
|
)
|
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
return FsMagicUnsupported, nil
|
|
}
|