Signed-off-by: Amit Krishnan <krish.amit@gmail.com> Signed-off-by: Alexander Morozov <lk4d4@docker.com> Upstream-commit: 934328d8ea650bf8a9c3c719999ce2a1f5dd5df6 Component: engine
14 lines
288 B
Go
14 lines
288 B
Go
// +build solaris freebsd
|
|
|
|
package container
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func detachMounted(path string) error {
|
|
//Solaris and FreeBSD do not support the lazy unmount or MNT_DETACH feature.
|
|
// Therefore there are separate definitions for this.
|
|
return unix.Unmount(path, 0)
|
|
}
|