Files
podman/libpod/volume_internal_freebsd.go
Paul Holzinger bad25da92e libpod: add !remote tag
This should never be pulled into the remote client.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-10-24 12:11:34 +02:00

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)
}