cberner / fuser

Filesystem in Userspace (FUSE) for Rust
MIT License
835 stars 114 forks source link

Added DeferPermissions option #233

Closed freewilll closed 1 year ago

freewilll commented 1 year ago

This is needed for redox (source) in order to build an image with MacOS. We are upgrading from the fuse library and would like to use this option.

cberner commented 1 year ago

Hmm. I'm not sure about adding this, as it appears to be a MacFUSE only feature. Have you tried using MountOption::CUSTOM("defer_permissions")?

freewilll commented 1 year ago

Ahh nice, I didn't realize MountOption was an option (pun not intended). I'll use that instead, thanks.