k3s/pkg/containerd/utility_linux.go
Jamie Phillips 7345ac35ae
Initial windows support for agent (#3375)
Signed-off-by: Jamie Phillips <jamie.phillips@suse.com>
2021-06-01 12:29:46 -07:00

17 lines
336 B
Go

// +build linux
package containerd
import (
"github.com/containerd/containerd/snapshots/overlay"
fuseoverlayfs "github.com/containerd/fuse-overlayfs-snapshotter"
)
func OverlaySupported(root string) error {
return overlay.Supported(root)
}
func FuseoverlayfsSupported(root string) error {
return fuseoverlayfs.Supported(root)
}