mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a02f67be5b
Docker-DCO-1.1-Signed-off-by: Josiah Kiehl <josiah@capoferro.net> (github: capoferro)
18 lines
350 B
Go
18 lines
350 B
Go
package aufs
|
|
|
|
import (
|
|
"os/exec"
|
|
"syscall"
|
|
|
|
"github.com/docker/docker/pkg/log"
|
|
)
|
|
|
|
func Unmount(target string) error {
|
|
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
|
|
log.Errorf("[warning]: couldn't run auplink before unmount: %s", err)
|
|
}
|
|
if err := syscall.Unmount(target, 0); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|