moby/daemon/graphdriver/zfs/zfs_unsupported.go
Sebastiaan van Stijn ab35df454d
remove pre-go1.17 build-tags
Removed pre-go1.17 build-tags with go fix;

    go mod init
    go fix -mod=readonly ./...
    rm go.mod

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-05-19 20:38:51 +02:00

11 lines
215 B
Go

//go:build !linux && !freebsd
package zfs // import "github.com/docker/docker/daemon/graphdriver/zfs"
func checkRootdirFs(rootdir string) error {
return nil
}
func getMountpoint(id string) string {
return id
}