mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
359b7df5d2
Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
17 lines
351 B
Go
17 lines
351 B
Go
package aufs
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/utils"
|
|
"os/exec"
|
|
"syscall"
|
|
)
|
|
|
|
func Unmount(target string) error {
|
|
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
|
|
utils.Errorf("[warning]: couldn't run auplink before unmount: %s", err)
|
|
}
|
|
if err := syscall.Unmount(target, 0); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|