I was caught out by a change in how options are treated in 0.9.1: if you set AutoUnmount and neither AllowRoot or AllowOther are set, then AllowOther is getting automatically added. If your /etc/fuse.conf doesn't permit AllowOther, the mount will fail without much information. See the latter half of #153, after it was closed.
This PR adds a warning when AllowOther is added and a comment to the options datatype, in the hopes of saving others some trouble.
I was caught out by a change in how options are treated in 0.9.1: if you set
AutoUnmount
and neitherAllowRoot
orAllowOther
are set, thenAllowOther
is getting automatically added. If your/etc/fuse.conf
doesn't permitAllowOther
, the mount will fail without much information. See the latter half of #153, after it was closed.This PR adds a warning when
AllowOther
is added and a comment to the options datatype, in the hopes of saving others some trouble.