Control: tags -1 + patch Le 29/04/2020 à 16:57, Stéphane Glondu a écrit : > On my system, mounting a filesystem with mount.s3ql fails with: >> fusermount: unknown option 'nonempty' >> ERROR: fuse_mount failed > > This seems related to fuse3, where this option has been removed. As > gnome-gvfs requires fuse3, I guess this make s3ql unusable on many > systems, hence the severity.
-- Stéphane
commit 7b8259b00287031b0019d8cfe1fa66580c1086f0 Author: Stephane Glondu <st...@glondu.net> Date: Wed Apr 29 17:23:13 2020 +0200 Fix mount with fuse3 (Closes: #959117) diff --git a/src/s3ql/mount.py b/src/s3ql/mount.py index dec0c11..43a3737 100644 --- a/src/s3ql/mount.py +++ b/src/s3ql/mount.py @@ -439,7 +439,7 @@ def get_fuse_opts(options): 'subtype=s3ql', 'big_writes', 'max_write=131072', 'no_remote_lock' ] - if platform.system() == 'Darwin': + if platform.system() == 'Darwin' or True: # FUSE4X and OSXFUSE claim to support nonempty, but # neither of them actually do. fuse_opts.remove('nonempty')