mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

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
641 B
Go
18 lines
641 B
Go
// +build solaris
|
|
|
|
package zfs
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// List of ZFS properties to retrieve from zfs list command on a Solaris platform
|
|
var dsPropList = []string{"name", "origin", "used", "available", "mountpoint", "compression", "type", "volsize", "quota", "referenced"}
|
|
|
|
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"}
|
|
var zpoolPropListOptions = strings.Join(zpoolPropList, ",")
|
|
var zpoolArgs = []string{"get", "-p", zpoolPropListOptions}
|