github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/libpod/mounts_linux.go (about) 1 // +build linux 2 3 package libpod 4 5 const ( 6 // MountPrivate represents the private mount option. 7 MountPrivate = "private" 8 // MountRPrivate represents the rprivate mount option. 9 MountRPrivate = "rprivate" 10 // MountShared represents the shared mount option. 11 MountShared = "shared" 12 // MountRShared represents the rshared mount option. 13 MountRShared = "rshared" 14 // MountSlave represents the slave mount option. 15 MountSlave = "slave" 16 // MountRSlave represents the rslave mount option. 17 MountRSlave = "rslave" 18 )