diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-17 09:41:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 09:41:54 +0000 |
commit | c90eec2700d2e00a4b8f1e06ca640c034af5a530 (patch) | |
tree | b594eb9278a6a124c8acf4640de57b75721e3af4 /pkg/domain/entities | |
parent | a9131050cfca0844aabae505a3df6d43426a9fed (diff) | |
parent | bc56ee158fe34e05b4dc3b69ee1bf8a3f0a9e615 (diff) | |
download | podman-c90eec2700d2e00a4b8f1e06ca640c034af5a530.tar.gz podman-c90eec2700d2e00a4b8f1e06ca640c034af5a530.tar.bz2 podman-c90eec2700d2e00a4b8f1e06ca640c034af5a530.zip |
Merge pull request #14999 from sstosh/restart-option
Add restart --cidfile, --filter
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 3ba507750..91ccdc2b2 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -119,6 +119,7 @@ type KillReport struct { } type RestartOptions struct { + Filters map[string][]string All bool Latest bool Running bool @@ -126,8 +127,9 @@ type RestartOptions struct { } type RestartReport struct { - Err error - Id string //nolint:revive,stylecheck + Err error + Id string //nolint:revive,stylecheck + RawInput string } type RmOptions struct { |