Browse Source
Merge pull request #1764 from danlsgiga/handle-umask
Use provided umask on mount
pull/1778/head
Chris Lu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
weed/command/mount_std.go
|
|
@ -100,9 +100,9 @@ func RunMount(option *MountOptions, umask os.FileMode) bool { |
|
|
|
uid, gid := uint32(0), uint32(0) |
|
|
|
mountMode := os.ModeDir | 0777 |
|
|
|
if err == nil { |
|
|
|
mountMode = os.ModeDir | fileInfo.Mode() |
|
|
|
mountMode = os.ModeDir | os.FileMode(0777)&^umask |
|
|
|
uid, gid = util.GetFileUidGid(fileInfo) |
|
|
|
fmt.Printf("mount point owner uid=%d gid=%d mode=%s\n", uid, gid, fileInfo.Mode()) |
|
|
|
fmt.Printf("mount point owner uid=%d gid=%d mode=%s\n", uid, gid, mountMode) |
|
|
|
} else { |
|
|
|
fmt.Printf("can not stat %s\n", dir) |
|
|
|
return false |
|
|
|