db: Change db file mode to 660 #62

Merged
mrngm merged 1 commits from issue-58 into master 2020-06-28 12:16:04 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func OpenDB(path string, fs *FileStore) (*Database, error) {
return nil, errors.New("database not set")
}
db, err := bolt.Open(path, 0666, &bolt.Options{Timeout: 1 * time.Second})
db, err := bolt.Open(path, 0660, &bolt.Options{Timeout: 1 * time.Second})
if err != nil {
return nil, errors.Wrapf(err, "failed to open database at '%v'", path)
}