From 147d19fba16d483dc0eebd88399d057a53d6ef49 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 8 Aug 2018 11:54:51 +0200 Subject: [PATCH] rofiles-fuse: Unmount lazily This has a better chance of succeeding Closes: #195 Approved by: alexlarsson --- src/builder-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builder-context.c b/src/builder-context.c index 26758cfd..3e2d7031 100644 --- a/src/builder-context.c +++ b/src/builder-context.c @@ -731,7 +731,7 @@ static char *rofiles_unmount_path = NULL; static void rofiles_umount_handler (int signum) { - char *argv[] = { "fusermount", "-u", NULL, + char *argv[] = { "fusermount", "-uz", NULL, NULL }; argv[2] = rofiles_unmount_path;