Skip to content

Commit

Permalink
Merge pull request #8254 from yangm97/adopt-existing-volumes
Browse files Browse the repository at this point in the history
fix: allow volume creation when the _data directory already exists
  • Loading branch information
openshift-merge-robot authored Nov 6, 2020
2 parents 14d18de + ca7dcff commit f1be2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpod/runtime_volume_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (r *Runtime) newVolume(ctx context.Context, options ...VolumeCreateOption)
return nil, errors.Wrapf(err, "error chowning volume directory %q to %d:%d", volPathRoot, volume.config.UID, volume.config.GID)
}
fullVolPath := filepath.Join(volPathRoot, "_data")
if err := os.Mkdir(fullVolPath, 0755); err != nil {
if err := os.MkdirAll(fullVolPath, 0755); err != nil {
return nil, errors.Wrapf(err, "error creating volume directory %q", fullVolPath)
}
if err := os.Chown(fullVolPath, volume.config.UID, volume.config.GID); err != nil {
Expand Down

0 comments on commit f1be2dc

Please sign in to comment.