diff --git a/cmd/mountlib/mount.go b/cmd/mountlib/mount.go index ecb755f4a..35d1d6a24 100644 --- a/cmd/mountlib/mount.go +++ b/cmd/mountlib/mount.go @@ -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)