mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +08:00
12 lines
171 B
Go
12 lines
171 B
Go
//go:build !remote
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func detachUnmount(mountPoint string) error {
|
|
return unix.Unmount(mountPoint, unix.MNT_DETACH)
|
|
}
|