Signed-off-by: Antonio Murdaca <me@runcom.ninja> Upstream-commit: 6f4d847046cb4e072de61d042c0266190d73a8c9 Component: engine
19 lines
336 B
Go
19 lines
336 B
Go
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
|
|
}
|