mirror of
https://github.com/containers/podman.git
synced 2025-07-29 19:33:13 +08:00

This adds define.BindOptions to declare the mount options for bind-like mounts (nullfs on FreeBSD). Note: this mirrors identical declarations in buildah and it may be preferable to use buildah's copies throughout podman. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
14 lines
176 B
Go
14 lines
176 B
Go
//go:build freebsd
|
|
|
|
package define
|
|
|
|
const (
|
|
// TypeBind is the type for mounting host dir
|
|
TypeBind = "nullfs"
|
|
)
|
|
|
|
var (
|
|
// Mount potions for bind
|
|
BindOptions = []string{}
|
|
)
|