aboutsummaryrefslogtreecommitdiff
path: root/libpod/volume_internal_freebsd.go
blob: cf71f1e32068e7139085ad67f26e8fe61a25138b (plain)
1
2
3
4
5
6
7
8
9
package libpod

import (
	"golang.org/x/sys/unix"
)

func detachUnmount(mountPoint string) error {
	return unix.Unmount(mountPoint, unix.MNT_FORCE)
}