-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exit and unmount ?? #6
Comments
Can you give a specific example of what you are trying to do? On Oct 20, 2016 4:41 PM, "Tim Docker" [email protected] wrote:
|
I'd like to set things up such that if no requests were received within a given time, the FUSE file system would unmount it self, and the process would exit. |
That would certainly be possible, though outside the scope of hfuse. You On Tue, Oct 25, 2016 at 2:44 PM, Tim Docker [email protected]
|
I don't understand what you are suggesting wrt to bracket, machines, or conduit. I start hfuse with a call to
What should I call to shutdown the process? |
Haven't forgotten about you, will get a chance to look at this, this On Wed, Oct 26, 2016 at 3:51 PM, Tim Docker [email protected]
|
I encountered this same issue (inability to cleanly un-mount programmatically). The work-around that I came up with was to call Proc.callProcess "fusermount" ["-u", mountpoint] This is inelegant (call to an external program) and error prone (it fails if called while fuse is busy or called from the same thread as is executing a fuse callback, such as, from within the A programmatic solution would be desirable. Perhaps |
Nice library! I'm using it in a small project.
I'd like my filesystem to unmount itself under certain circumstances - any suggestions on how this can be done with the current API?
The text was updated successfully, but these errors were encountered: