[#727] config: Use 0660 as default permissions

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-07-29 16:37:23 +03:00 committed by Alex Vanin
parent 7a10d902be
commit 67b17cfb02
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ type Config config.Config
// config defaults
const (
// PermDefault are default permission bits for BlobStor data.
PermDefault = 0700
PermDefault = 0660
// ShallowDepthDefault is a default shallow dir depth.
ShallowDepthDefault = 4

View file

@ -13,7 +13,7 @@ type Config config.Config
// config defaults
const (
// PermDefault is a default permission bits for metabase file.
PermDefault = 0700
PermDefault = 0660
)
// From wraps config section into Config.