diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-11-29 15:05:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-29 15:05:03 +0100 |
commit | 39c705e9405faa4d02b71165d05eec1e7bb44d93 (patch) | |
tree | f2b2ec4d93638ac661ab8f0c8c6aa38f234e8552 /cmd/podman/cliconfig/config.go | |
parent | 7b99ef0b84c7b5e758544d0a25956674e7ea7db1 (diff) | |
parent | 79bf5010eda37c07f577414ae71ecb8f8c8714a2 (diff) | |
download | podman-39c705e9405faa4d02b71165d05eec1e7bb44d93.tar.gz podman-39c705e9405faa4d02b71165d05eec1e7bb44d93.tar.bz2 podman-39c705e9405faa4d02b71165d05eec1e7bb44d93.zip |
Merge pull request #4558 from rhatdan/reset
Add podman system reset command
Diffstat (limited to 'cmd/podman/cliconfig/config.go')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index a34afa827..df7ea6c33 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -658,6 +658,11 @@ type SystemPruneValues struct { Volume bool } +type SystemResetValues struct { + PodmanCommand + Force bool +} + type SystemRenumberValues struct { PodmanCommand } |