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>
This commit is contained in:
Doug Rabson
2022-05-19 14:50:49 +01:00
parent 72f4c77139
commit 0300271bf7
4 changed files with 24 additions and 2 deletions

View File

@ -0,0 +1,8 @@
//go:build linux
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
)