mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
55885daa56
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
21 lines
386 B
Go
21 lines
386 B
Go
// +build linux
|
|
|
|
package aufs
|
|
|
|
import (
|
|
"os/exec"
|
|
"syscall"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
// Unmount the target specified.
|
|
func Unmount(target string) error {
|
|
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
|
|
logrus.Errorf("Couldn't run auplink before unmount: %s", err)
|
|
}
|
|
if err := syscall.Unmount(target, 0); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|