You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3s/pkg/containerd/utility_linux.go

17 lines
336 B

// +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)
}