ac6624773e
The pkg/fsutils package was forked in containerd, and later moved to
containerd/continuity/fs. As we're moving more bits to containerd, let's also
use the same implementation to reduce code-duplication and to prevent them from
diverging.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 5b6b42162b
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
302 B
Go
8 lines
302 B
Go
package fsutils // import "github.com/docker/docker/pkg/fsutils"
|
|
|
|
import "github.com/containerd/continuity/fs"
|
|
|
|
// SupportsDType returns whether the filesystem mounted on path supports d_type.
|
|
//
|
|
// Deprecated: use github.com/containerd/continuity/fs.SupportsDType
|
|
var SupportsDType = fs.SupportsDType
|