aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command/mount_linux.go')
-rw-r--r--weed/command/mount_linux.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/weed/command/mount_linux.go b/weed/command/mount_linux.go
new file mode 100644
index 000000000..f07e5bfe8
--- /dev/null
+++ b/weed/command/mount_linux.go
@@ -0,0 +1,12 @@
+package command
+
+import (
+
+ "github.com/seaweedfs/fuse"
+)
+
+func osSpecificMountOptions() []fuse.MountOption {
+ return []fuse.MountOption{
+ fuse.AllowNonEmptyMount(),
+ }
+}