]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go
f1497c587ef87524ba06cb6e7f8cd0ed3ea472ee
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / syscall_unix.go
1 // +build linux freebsd
2
3 package system
4
5 import "syscall"
6
7 // Unmount is a platform-specific helper function to call
8 // the unmount syscall.
9 func Unmount(dest string) error {
10 return syscall.Unmount(dest, 0)
11 }