Files
podman/libpod/mounts_linux.go
Paul Holzinger bad25da92e libpod: add !remote tag
This should never be pulled into the remote client.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-10-24 12:11:34 +02:00

20 lines
532 B
Go

//go:build !remote
// +build !remote
package libpod
const (
// MountPrivate represents the private mount option.
MountPrivate = "private"
// MountRPrivate represents the rprivate mount option.
MountRPrivate = "rprivate"
// MountShared represents the shared mount option.
MountShared = "shared"
// MountRShared represents the rshared mount option.
MountRShared = "rshared"
// MountSlave represents the slave mount option.
MountSlave = "slave"
// MountRSlave represents the rslave mount option.
MountRSlave = "rslave"
)