diff options
Diffstat (limited to 'src/cstore/unionfs/cstore-unionfs.cpp')
-rw-r--r-- | src/cstore/unionfs/cstore-unionfs.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cstore/unionfs/cstore-unionfs.cpp b/src/cstore/unionfs/cstore-unionfs.cpp index 938436e..39d7634 100644 --- a/src/cstore/unionfs/cstore-unionfs.cpp +++ b/src/cstore/unionfs/cstore-unionfs.cpp @@ -1511,11 +1511,23 @@ UnionfsCstore::do_mount(const FsPath& rwdir, const FsPath& rdir, bool UnionfsCstore::do_umount(const FsPath& mdir) { +#ifdef USE_UNIONFSFUSE + string umount_cmd = "/usr/bin/fusermount -u "; + umount_cmd += mdir.path_cstr(); + + if (system(umount_cmd.c_str()) != 0) + { + output_internal("union umount failed [%s][%s]\n", + strerror(errno), mdir.path_cstr()); + return(false); + } +#else if (umount(mdir.path_cstr()) != 0) { output_internal("union umount failed [%s][%s]\n", strerror(errno), mdir.path_cstr()); return false; } +#endif return true; } |