forked from TrueCloudLab/rclone
mount: run rclone mount in the background - fixes #723
This commit is contained in:
parent
90af7af9a3
commit
ebfeec9fb4
4 changed files with 68 additions and 4 deletions
15
cmd/mountlib/daemon.go
Normal file
15
cmd/mountlib/daemon.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Daemonization interface for non-Unix variants only
|
||||
|
||||
// +build windows darwin,!cgo
|
||||
|
||||
package mountlib
|
||||
|
||||
import (
|
||||
"log"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func startBackgroundMode() bool {
|
||||
log.Fatalf("background mode not supported on %s platform", runtime.GOOS)
|
||||
return false
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue