Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 9a9dc5ba96d2661f5dc2037db44d0984d2129946 Component: engine
21 lines
353 B
Go
21 lines
353 B
Go
// +build linux
|
|
|
|
package aufs
|
|
|
|
import (
|
|
"os/exec"
|
|
"syscall"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
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
|
|
}
|