diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-12-29 13:16:23 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-12-29 13:16:23 -0800 |
| commit | 9f3836072a504811b2be88760ec8b6297a72f3dd (patch) | |
| tree | 82180e828e07b940006a873eec04c3bf09d57644 | |
| parent | 259a2c111e8e8916503ccc47b61f974ed55cdafc (diff) | |
| download | seaweedfs-9f3836072a504811b2be88760ec8b6297a72f3dd.tar.xz seaweedfs-9f3836072a504811b2be88760ec8b6297a72f3dd.zip | |
weed mount: no mac finder broswe mode
| -rw-r--r-- | weed/command/mount_std.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go index 4e4ee6157..28ccf9c14 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -11,11 +11,11 @@ import ( "strings" "time" - "github.com/seaweedfs/fuse" - "github.com/seaweedfs/fuse/fs" "github.com/chrislusf/seaweedfs/weed/filesys" "github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/util" + "github.com/seaweedfs/fuse" + "github.com/seaweedfs/fuse/fs" ) func runMount(cmd *Command, args []string) bool { @@ -58,6 +58,7 @@ func runMount(cmd *Command, args []string) bool { fuse.Subtype("SeaweedFS"), fuse.NoAppleDouble(), fuse.NoAppleXattr(), + fuse.NoBrowse(), fuse.ExclCreate(), fuse.DaemonTimeout("3600"), fuse.AllowOther(), |
