mirror of
https://github.com/containers/podman.git
synced 2025-11-13 09:38:05 +08:00
Changes since 2022-05-31: - add --omit-history option (buildah PR 4028) Signed-off-by: Ed Santiago <santiago@redhat.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
15 lines
315 B
Go
15 lines
315 B
Go
package graphdriver
|
|
|
|
var (
|
|
// Slice of drivers that should be used in order
|
|
priority = []string{
|
|
"vfs",
|
|
}
|
|
)
|
|
|
|
// GetFSMagic returns the filesystem id given the path.
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
// Note it is OK to return FsMagicUnsupported on Windows.
|
|
return FsMagicUnsupported, nil
|
|
}
|