diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-20 17:58:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 17:58:11 -0500 |
commit | 14443ccdfc19a7d719c63937ce76bfddf01f88e2 (patch) | |
tree | 3b3270237f9d3837668733e7364feb029037d437 /pkg/domain/entities/containers.go | |
parent | fe4f9ba303affde0b838e19c862b45206ae2feed (diff) | |
parent | e7df73efadd36e2489954ee9a766a3fbfe4eafeb (diff) | |
download | podman-14443ccdfc19a7d719c63937ce76bfddf01f88e2.tar.gz podman-14443ccdfc19a7d719c63937ce76bfddf01f88e2.tar.bz2 podman-14443ccdfc19a7d719c63937ce76bfddf01f88e2.zip |
Merge pull request #9014 from rhatdan/rm
Fix handling of container remove
Diffstat (limited to 'pkg/domain/entities/containers.go')
-rw-r--r-- | pkg/domain/entities/containers.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index d8576c101..4c1bd6a7d 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -128,12 +128,11 @@ type RestartReport struct { } type RmOptions struct { - All bool - CIDFiles []string - Force bool - Ignore bool - Latest bool - Volumes bool + All bool + Force bool + Ignore bool + Latest bool + Volumes bool } type RmReport struct { |