Added FUSE support #55

Merged
Elara6331 merged 65 commits from yannickulrich/itd:fuse into master 2023-03-25 22:23:52 +00:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 5fa49adee4 - Show all commits

View File

@ -186,6 +186,11 @@ func main() {
if err != nil {
log.Error("Error starting socket").Err(err).Send()
}
// Start fuse socket
err = startFuse(ctx, dev)
yannickulrich marked this conversation as resolved Outdated

FUSE should be started before the socket (socket should always be last)

FUSE should be started before the socket (socket should always be last)

Done in 3b96901

Done in 3b96901
if err != nil {
log.Error("Error starting socket").Err(err).Send()
}
// Block forever
select {}
}