mirror of https://github.com/containers/podman.git
				
				
				
			Merge pull request #8254 from yangm97/adopt-existing-volumes
fix: allow volume creation when the _data directory already exists
This commit is contained in:
		
						commit
						f1be2dcbfc
					
				|  | @ -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 { | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue