weed mount: no mac finder broswe mode

This commit is contained in:
Chris Lu 2018-12-29 13:16:23 -08:00
parent 259a2c111e
commit 9f3836072a

View file

@ -11,11 +11,11 @@ import (
"strings" "strings"
"time" "time"
"github.com/seaweedfs/fuse"
"github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/filesys" "github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util" "github.com/chrislusf/seaweedfs/weed/util"
"github.com/seaweedfs/fuse"
"github.com/seaweedfs/fuse/fs"
) )
func runMount(cmd *Command, args []string) bool { func runMount(cmd *Command, args []string) bool {
@ -58,6 +58,7 @@ func runMount(cmd *Command, args []string) bool {
fuse.Subtype("SeaweedFS"), fuse.Subtype("SeaweedFS"),
fuse.NoAppleDouble(), fuse.NoAppleDouble(),
fuse.NoAppleXattr(), fuse.NoAppleXattr(),
fuse.NoBrowse(),
fuse.ExclCreate(), fuse.ExclCreate(),
fuse.DaemonTimeout("3600"), fuse.DaemonTimeout("3600"),
fuse.AllowOther(), fuse.AllowOther(),