1// +build linux freebsd
2
3package system // import "github.com/ory/dockertest/docker/pkg/system"
4
5import "golang.org/x/sys/unix"
6
7// Unmount is a platform-specific helper function to call
8// the unmount syscall.
9func Unmount(dest string) error {
10	return unix.Unmount(dest, 0)
11}
12
13// CommandLineToArgv should not be used on Unix.
14// It simply returns commandLine in the only element in the returned array.
15func CommandLineToArgv(commandLine string) ([]string, error) {
16	return []string{commandLine}, nil
17}
18