Do not attempt to set the fuse option "allow_other" by default, which
will fail on some systems if "user_allow_other" is not set in fuse.conf.
Instead, add an argument '-o/--allow-other' to optionally turn this
feature on.
# SYNOPSIS
-bup fuse [-d] [-f] <mountpoint>
+bup fuse [-d] [-f] [-o] <mountpoint>
# DESCRIPTION
: run in the foreground and exit only when the filesystem
is unmounted.
+-o, --allow-other
+: permit other users to access the filesystem. Necessary for
+ exporting the filesystem via Samba, for example.
# EXAMPLE
f.fuse_args.setmod('foreground')
print f.multithreaded
f.multithreaded = False
+f.fuse_args.add('allow_other')
f.main()