Merge pull request #1304 from BrianBland/fsDriverRelaxedPermissions

Relaxes filesystem driver permissions to 0777 (dirs) and 0666 (files)
pull/1310/head
Stephen Day 2015-12-29 19:06:45 -08:00
commit 00b983b837
1 changed files with 2 additions and 2 deletions

View File

@ -135,11 +135,11 @@ func (d *driver) WriteStream(ctx context.Context, subPath string, offset int64,
fullPath := d.fullPath(subPath)
parentDir := path.Dir(fullPath)
if err := os.MkdirAll(parentDir, 0755); err != nil {
if err := os.MkdirAll(parentDir, 0777); err != nil {
return 0, err
}
fp, err := os.OpenFile(fullPath, os.O_WRONLY|os.O_CREATE, 0644)
fp, err := os.OpenFile(fullPath, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil {
// TODO(stevvooe): A few missing conditions in storage driver:
// 1. What if the path is already a directory?