浏览代码

Update perms for group read (#1876)

Laurence Jones 2 年之前
父节点
当前提交
4ac01ed880
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/database/database.go

+ 1 - 1
pkg/database/database.go

@@ -74,7 +74,7 @@ func NewClient(config *csconfig.DatabaseCfg) (*Client, error) {
 			}
 		}
 		//Always try to set permissions to simplify a bit the code for windows (as the permissions set by OpenFile will be garbage)
-		if err := setFilePerm(config.DbPath, 0600); err != nil {
+		if err := setFilePerm(config.DbPath, 0640); err != nil {
 			return &Client{}, fmt.Errorf("unable to set perms on %s: %v", config.DbPath, err)
 		}
 		var sqliteConnectionStringParameters string