diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-10-27 09:12:10 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-10-27 09:12:10 -0700 |
| commit | eb2172f63fcdf7f5455c142daaceb6b1a489f7f4 (patch) | |
| tree | 1f0187bfa368e84db93244199048f3af785a1529 /weed/command/mount_freebsd.go | |
| parent | 71eb8efd208fc7f2c3bc41bed424faa2d758beea (diff) | |
| download | seaweedfs-eb2172f63fcdf7f5455c142daaceb6b1a489f7f4.tar.xz seaweedfs-eb2172f63fcdf7f5455c142daaceb6b1a489f7f4.zip | |
FUSE: add os specific mount options
related to https://github.com/chrislusf/seaweedfs/issues/1094
Diffstat (limited to 'weed/command/mount_freebsd.go')
| -rw-r--r-- | weed/command/mount_freebsd.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/weed/command/mount_freebsd.go b/weed/command/mount_freebsd.go new file mode 100644 index 000000000..5b3fff513 --- /dev/null +++ b/weed/command/mount_freebsd.go @@ -0,0 +1,10 @@ +package command + +import ( + + "github.com/seaweedfs/fuse" +) + +func osSpecificMountOptions() []fuse.MountOption { + return []fuse.MountOption{} +} |
