summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-17 09:41:54 +0000
committerGitHub <noreply@github.com>2022-08-17 09:41:54 +0000
commitc90eec2700d2e00a4b8f1e06ca640c034af5a530 (patch)
treeb594eb9278a6a124c8acf4640de57b75721e3af4 /pkg/domain/entities
parenta9131050cfca0844aabae505a3df6d43426a9fed (diff)
parentbc56ee158fe34e05b4dc3b69ee1bf8a3f0a9e615 (diff)
downloadpodman-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.go6
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 {