update mount.c, in order to pass through -n.
authorCiaran <ciaran@hypokrites.me>
Wed, 21 Dec 2022 00:44:50 +0000 (16:44 -0800)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 2 Jan 2023 10:53:24 +0000 (10:53 +0000)
autofs uses automount, which calls fuse, during an sshfs call. fuse complains about -n being an unknown option (ref. https://github.com/libfuse/libfuse/issues/715)
this one line edit provides the command to be accepted, and pass through, allowing autofs-automount to operate on the mount, even though it is already in the mtab, given the nature of autofs/automount.

lib/mount.c

index 979f8d9087cc3ca237867a9c9bf76c4268c51362..484bf4071d663768700d4a9027b105e8c3caf1ee 100644 (file)
@@ -97,6 +97,7 @@ static const struct fuse_opt fuse_mount_opts[] = {
        FUSE_OPT_KEY("rootcontext=",            KEY_KERN_OPT),
        FUSE_OPT_KEY("max_read=",               KEY_KERN_OPT),
        FUSE_OPT_KEY("user=",                   KEY_MTAB_OPT),
+       FUSE_OPT_KEY("-n",                      KEY_MTAB_OPT),
        FUSE_OPT_KEY("-r",                      KEY_RO),
        FUSE_OPT_KEY("ro",                      KEY_KERN_FLAG),
        FUSE_OPT_KEY("rw",                      KEY_KERN_FLAG),