mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 ec1651fbf1
			
		
	
	ec1651fbf1
	
	
	
		
			
			Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.25.0 to 1.28.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.25.0...v1.28.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			727 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			727 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !solaris
 | |
| 
 | |
| package zfs
 | |
| 
 | |
| import (
 | |
| 	"strings"
 | |
| )
 | |
| 
 | |
| // List of ZFS properties to retrieve from zfs list command on a non-Solaris platform
 | |
| var dsPropList = []string{"name", "origin", "used", "available", "mountpoint", "compression", "type", "volsize", "quota", "referenced", "written", "logicalused", "usedbydataset"}
 | |
| 
 | |
| var dsPropListOptions = strings.Join(dsPropList, ",")
 | |
| 
 | |
| // List of Zpool properties to retrieve from zpool list command on a non-Solaris platform
 | |
| var zpoolPropList = []string{"name", "health", "allocated", "size", "free", "readonly", "dedupratio", "fragmentation", "freeing", "leaked"}
 | |
| var zpoolPropListOptions = strings.Join(zpoolPropList, ",")
 | |
| var zpoolArgs = []string{"get", "-p", zpoolPropListOptions}
 |