forked from TrueCloudLab/restic
restic-server: Fix folder permissions
This commit is contained in:
parent
e4168fdde5
commit
1cdbc8e1aa
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ func main() {
|
|||
"keys",
|
||||
}
|
||||
for _, d := range dirs {
|
||||
os.MkdirAll(filepath.Join(*path, d), 0600)
|
||||
os.MkdirAll(filepath.Join(*path, d), 0700)
|
||||
}
|
||||
|
||||
// Define the routes
|
||||
|
|
Loading…
Reference in a new issue