mount: default --deamon-timout to 15 minutes on macOS and FreeBSD

See: https://forum.rclone.org/t/macos-fuse-mount-contents-disappear-after-writes-while-using-vfs-cache/10566/
s3-about
Nick Craig-Wood 2019-06-24 11:54:38 +01:00
parent 276f8cccf6
commit 4e64ee38e2
1 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,13 @@ var (
DaemonTimeout time.Duration // OSXFUSE only
)
func init() {
// DaemonTimeout defaults to non zero for macOS and freebsd
if runtime.GOOS == "darwin" || runtime.GOOS == "freebsd" {
DaemonTimeout = 15 * time.Minute
}
}
// Check is folder is empty
func checkMountEmpty(mountpoint string) error {
fp, fpErr := os.Open(mountpoint)