Use fusermount3 instead of fusermount

We're using libfuse3, so we should be using its fusermount command.
This commit is contained in:
Nikolaus Rath 2018-11-18 17:13:21 +00:00
parent 9ced6ca681
commit 76d11fa6f4
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def cleanup(mount_process, mnt_dir):
def umount(mount_process, mnt_dir):
subprocess.check_call(['fusermount', '-z', '-u', mnt_dir ])
subprocess.check_call(['fusermount3', '-z', '-u', mnt_dir ])
assert not os.path.ismount(mnt_dir)
# Give mount process a little while to terminate. Popen.wait(timeout)