mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 8ebafbde34
			
		
	
	8ebafbde34
	
	
	
		
			
			Bumps [github.com/containers/common](https://github.com/containers/common) from 0.36.0 to 0.37.0. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.36.0...v0.37.0) Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			351 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			351 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package chown
 | |
| 
 | |
| import (
 | |
| 	"github.com/pkg/errors"
 | |
| )
 | |
| 
 | |
| // ChangeHostPathOwnership changes the uid and gid ownership of a directory or file within the host.
 | |
| // This is used by the volume U flag to change source volumes ownership
 | |
| func ChangeHostPathOwnership(path string, recursive bool, uid, gid int) error {
 | |
| 	return errors.New("windows not supported")
 | |
| }
 |