mirror of
https://github.com/containers/podman.git
synced 2025-05-21 09:05:56 +08:00
10 lines
150 B
Go
10 lines
150 B
Go
package libpod
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func detachUnmount(mountPoint string) error {
|
|
return unix.Unmount(mountPoint, unix.MNT_FORCE)
|
|
}
|