* Changing umask value
This commit is contained in:
Sourav Gupta 2023-02-01 11:05:47 +05:30 коммит произвёл GitHub
Родитель 855b27c9f1
Коммит a3761af40d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -5,7 +5,8 @@
- [#1006](https://github.com/Azure/azure-storage-fuse/issues/1006) Remove user and group config from logrotate file. - [#1006](https://github.com/Azure/azure-storage-fuse/issues/1006) Remove user and group config from logrotate file.
- [csi-driver #809](https://github.com/kubernetes-sigs/blob-csi-driver/issues/809) Fail to mount when uid/gid are provided on command line. - [csi-driver #809](https://github.com/kubernetes-sigs/blob-csi-driver/issues/809) Fail to mount when uid/gid are provided on command line.
- [#1032](https://github.com/Azure/azure-storage-fuse/issues/1032) `mount all` CLI params parsing fix when no `config-file` and `tmp-path` is provided. - [#1032](https://github.com/Azure/azure-storage-fuse/issues/1032) `mount all` CLI params parsing fix when no `config-file` and `tmp-path` is provided.
- [#1015](https://github.com/Azure/azure-storage-fuse/issues/1015) Default value of `ignore-open-flags` config parameter changed to `true` - [#1015](https://github.com/Azure/azure-storage-fuse/issues/1015) Default value of `ignore-open-flags` config parameter changed to `true`.
- [#1038](https://github.com/Azure/azure-storage-fuse/issues/1038) Changing default daemon permissions.
## 2.0.1 (2022-12-02) ## 2.0.1 (2022-12-02)
- Copy of GA release of Blobfuse2. This release was necessary to ensure the GA version resolves ahead of the preview versions. - Copy of GA release of Blobfuse2. This release was necessary to ensure the GA version resolves ahead of the preview versions.

Просмотреть файл

@ -376,7 +376,7 @@ var mountCmd = &cobra.Command{
dmnCtx := &daemon.Context{ dmnCtx := &daemon.Context{
PidFileName: pidFileName, PidFileName: pidFileName,
PidFilePerm: 0644, PidFilePerm: 0644,
Umask: 027, Umask: 022,
} }
ctx, _ := context.WithCancel(context.Background()) //nolint ctx, _ := context.WithCancel(context.Background()) //nolint