Skip to content

Commit

Permalink
Merge pull request #12369 from hashicorp/b-peers-perms
Browse files Browse the repository at this point in the history
core: write peers.json file with correct permissions
  • Loading branch information
shoenig committed Mar 24, 2022
2 parents 8cc8121 + 90160fc commit ab592ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/12369.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
Write peers.json file with correct permissions
```
2 changes: 1 addition & 1 deletion nomad/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,7 @@ func (s *Server) setupRaft() error {
peersFile := filepath.Join(path, "peers.json")
peersInfoFile := filepath.Join(path, "peers.info")
if _, err := os.Stat(peersInfoFile); os.IsNotExist(err) {
if err := ioutil.WriteFile(peersInfoFile, []byte(peersInfoContent), 0755); err != nil {
if err := ioutil.WriteFile(peersInfoFile, []byte(peersInfoContent), 0644); err != nil {
return fmt.Errorf("failed to write peers.info file: %v", err)
}

Expand Down

0 comments on commit ab592ba

Please sign in to comment.