Files
podman/libpod/define/mount_unsupported.go
Doug Rabson 0300271bf7 libpod/define: Make TypeBind a platform-specific constant
This allows us to redefine to the equivalent nullfs on FreeBSD.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
2022-08-30 16:32:24 +01:00

9 lines
123 B
Go

//go:build !linux && !freebsd
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
)