mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b4a6313969
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
362 B
Go
18 lines
362 B
Go
// +build linux
|
|
|
|
package aufs
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// Unmount the target specified.
|
|
func Unmount(target string) error {
|
|
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
|
|
logrus.Warnf("Couldn't run auplink before unmount %s: %s", target, err)
|
|
}
|
|
return unix.Unmount(target, 0)
|
|
}
|