diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-26 04:51:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-26 04:51:06 -0700 |
commit | 9e556530d24a51c7d19679a2f658a367686d9874 (patch) | |
tree | 7f5881c70c53aa47685d2a663f75ed9b430a72e3 /cmd/podman/cliconfig | |
parent | d0c6a35c05a72e4b156819406b83aa9f34f840e0 (diff) | |
parent | 25e0f870694ff65ac4e2973072410dcfc45dd7db (diff) | |
download | podman-9e556530d24a51c7d19679a2f658a367686d9874.tar.gz podman-9e556530d24a51c7d19679a2f658a367686d9874.tar.bz2 podman-9e556530d24a51c7d19679a2f658a367686d9874.zip |
Merge pull request #2498 from QiWang19/sysdf
podman system df- show podman disk usage
Diffstat (limited to 'cmd/podman/cliconfig')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index 1461c9f03..884bd7fdb 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -572,3 +572,9 @@ type SystemPruneValues struct { type SystemRenumberValues struct { PodmanCommand } + +type SystemDfValues struct { + PodmanCommand + Verbose bool + Format string +} |