Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: b4a63139696aea2c73ec361a9af8b36a118f0423 Component: engine
19 lines
362 B
Go
19 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)
|
|
}
|