aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bazil.org/fuse/unmount_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bazil.org/fuse/unmount_linux.go')
-rw-r--r--vendor/bazil.org/fuse/unmount_linux.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/bazil.org/fuse/unmount_linux.go b/vendor/bazil.org/fuse/unmount_linux.go
new file mode 100644
index 000000000..088f0cfee
--- /dev/null
+++ b/vendor/bazil.org/fuse/unmount_linux.go
@@ -0,0 +1,21 @@
+package fuse
+
+import (
+ "bytes"
+ "errors"
+ "os/exec"
+)
+
+func unmount(dir string) error {
+ cmd := exec.Command("fusermount", "-u", dir)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ if len(output) > 0 {
+ output = bytes.TrimRight(output, "\n")
+ msg := err.Error() + ": " + string(output)
+ err = errors.New(msg)
+ }
+ return err
+ }
+ return nil
+}