mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00

This should never be pulled into the remote client. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
13 lines
188 B
Go
13 lines
188 B
Go
//go:build !remote
|
|
// +build !remote
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func detachUnmount(mountPoint string) error {
|
|
return unix.Unmount(mountPoint, unix.MNT_FORCE)
|
|
}
|