mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8abadb36fa
This function ensures the argument is the mount point (i.e. if it's not, it bind mounts it to itself). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
71 lines
2.4 KiB
Go
71 lines
2.4 KiB
Go
package mount // import "github.com/docker/docker/pkg/mount"
|
|
|
|
// MakeShared ensures a mounted filesystem has the SHARED mount option enabled.
|
|
// See the supported options in flags.go for further reference.
|
|
func MakeShared(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "shared")
|
|
}
|
|
|
|
// MakeRShared ensures a mounted filesystem has the RSHARED mount option enabled.
|
|
// See the supported options in flags.go for further reference.
|
|
func MakeRShared(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "rshared")
|
|
}
|
|
|
|
// MakePrivate ensures a mounted filesystem has the PRIVATE mount option enabled.
|
|
// See the supported options in flags.go for further reference.
|
|
func MakePrivate(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "private")
|
|
}
|
|
|
|
// MakeRPrivate ensures a mounted filesystem has the RPRIVATE mount option
|
|
// enabled. See the supported options in flags.go for further reference.
|
|
func MakeRPrivate(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "rprivate")
|
|
}
|
|
|
|
// MakeSlave ensures a mounted filesystem has the SLAVE mount option enabled.
|
|
// See the supported options in flags.go for further reference.
|
|
func MakeSlave(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "slave")
|
|
}
|
|
|
|
// MakeRSlave ensures a mounted filesystem has the RSLAVE mount option enabled.
|
|
// See the supported options in flags.go for further reference.
|
|
func MakeRSlave(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "rslave")
|
|
}
|
|
|
|
// MakeUnbindable ensures a mounted filesystem has the UNBINDABLE mount option
|
|
// enabled. See the supported options in flags.go for further reference.
|
|
func MakeUnbindable(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "unbindable")
|
|
}
|
|
|
|
// MakeRUnbindable ensures a mounted filesystem has the RUNBINDABLE mount
|
|
// option enabled. See the supported options in flags.go for further reference.
|
|
func MakeRUnbindable(mountPoint string) error {
|
|
return ensureMountedAs(mountPoint, "runbindable")
|
|
}
|
|
|
|
// MakeMount ensures that the file or directory given is a mount point,
|
|
// bind mounting it to itself it case it is not.
|
|
func MakeMount(mnt string) error {
|
|
mounted, err := Mounted(mnt)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if mounted {
|
|
return nil
|
|
}
|
|
|
|
return Mount(mnt, mnt, "none", "bind")
|
|
}
|
|
|
|
func ensureMountedAs(mountPoint, options string) error {
|
|
if err := MakeMount(mountPoint); err != nil {
|
|
return err
|
|
}
|
|
|
|
return ForceMount("", mountPoint, "none", options)
|
|
}
|