1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/daemon/graphdriver/aufs/mount.go

22 lines
407 B
Go
Raw Normal View History

// +build linux
package aufs
import (
2013-06-04 21:30:47 +03:00
"os/exec"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix"
)
// Unmount the target specified.
func Unmount(target string) error {
2013-06-04 21:30:47 +03:00
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
logrus.Warnf("Couldn't run auplink before unmount %s: %s", target, err)
2013-06-04 21:30:47 +03:00
}
if err := unix.Unmount(target, 0); err != nil {
return err
}
2013-11-08 10:17:51 -08:00
return nil
}