diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-01 08:47:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 08:47:54 -0500 |
commit | 81a3ba36ae8d22b767e620c0b4c804764340de52 (patch) | |
tree | 55e0c5eb89271652000572e3fc781d7582b3e42a /pkg/domain/entities | |
parent | b045c173756dddcedf6a99a70f520bf423072826 (diff) | |
parent | 073f76c1327d296360caa04ef7d751dd00ef5a53 (diff) | |
download | podman-81a3ba36ae8d22b767e620c0b4c804764340de52.tar.gz podman-81a3ba36ae8d22b767e620c0b4c804764340de52.tar.bz2 podman-81a3ba36ae8d22b767e620c0b4c804764340de52.zip |
Merge pull request #9051 from rhatdan/rm
Switch podman stop/kill/wait handlers to use abi
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 2c32f792f..63be5578f 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -81,11 +81,10 @@ type PauseUnpauseReport struct { } type StopOptions struct { - All bool - CIDFiles []string - Ignore bool - Latest bool - Timeout *uint + All bool + Ignore bool + Latest bool + Timeout *uint } type StopReport struct { @@ -104,10 +103,9 @@ type TopOptions struct { } type KillOptions struct { - All bool - Latest bool - Signal string - CIDFiles []string + All bool + Latest bool + Signal string } type KillReport struct { |