diff options
| author | renweijun <56940749@qq.com> | 2023-03-25 19:47:53 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-25 04:47:53 -0700 |
| commit | bbd461b2c67eb391cbb94b104b44e0e5c38ed4ad (patch) | |
| tree | 3650ac42d219d5b9841dc3ca3d5f004ff93c426c | |
| parent | 5db9fcccd4194660a8503696ac44c3539c29d41e (diff) | |
| download | seaweedfs-bbd461b2c67eb391cbb94b104b44e0e5c38ed4ad.tar.xz seaweedfs-bbd461b2c67eb391cbb94b104b44e0e5c38ed4ad.zip | |
weed mount default EnableACL,Support chmod chown (#4335)
| -rw-r--r-- | weed/command/mount_std.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go index 33061146a..5f67bbad3 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -182,7 +182,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool { DirectMount: true, DirectMountFlags: 0, //SyncRead: false, // set to false to enable the FUSE_CAP_ASYNC_READ capability - //EnableAcl: true, + EnableAcl: true, } if *option.nonempty { fuseMountOptions.Options = append(fuseMountOptions.Options, "nonempty") |
