blob: e6aa09eac2cf623e07212ccb44fa3598a7ddf8bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// +build linux
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"
)
|