Use fusermount3 instead of fusermount
We're using libfuse3, so we should be using its fusermount command.
This commit is contained in:
parent
9ced6ca681
commit
76d11fa6f4
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue