diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-10 13:32:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 13:32:41 -0500 |
commit | 6823a5d6cc771ed3c031518a759670dff7ee81b5 (patch) | |
tree | 29cf170f3139aca41dc7d2d182de729be1dec9d0 /pkg/domain/entities | |
parent | 2bb149034bd67dd4027768863fed2fce853833ae (diff) | |
parent | 15cdcdca76f1cd21bd5f61edadec2fb7df307b1e (diff) | |
download | podman-6823a5d6cc771ed3c031518a759670dff7ee81b5.tar.gz podman-6823a5d6cc771ed3c031518a759670dff7ee81b5.tar.bz2 podman-6823a5d6cc771ed3c031518a759670dff7ee81b5.zip |
Merge pull request #8664 from rhatdan/prune
Add --filter to podman system prune
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/system.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/system.go b/pkg/domain/entities/system.go index bde2b6ef2..4af013134 100644 --- a/pkg/domain/entities/system.go +++ b/pkg/domain/entities/system.go @@ -19,6 +19,7 @@ type ServiceOptions struct { type SystemPruneOptions struct { All bool Volume bool + Filter []string } // SystemPruneReport provides report after system prune is executed. |