summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/containers.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-02-16 09:46:28 -0500
committerGitHub <noreply@github.com>2021-02-16 09:46:28 -0500
commit58a4793bec30058f648dcd1248da333a7bb6d47c (patch)
treede220666eba07d3183e95299bb1485ffe5f383d3 /pkg/domain/entities/containers.go
parentaadb16da383a91489821969247bced2b34d885e7 (diff)
parent4a9bd7a18f2db7db103a94287ef34cbd1be1626b (diff)
downloadpodman-58a4793bec30058f648dcd1248da333a7bb6d47c.tar.gz
podman-58a4793bec30058f648dcd1248da333a7bb6d47c.tar.bz2
podman-58a4793bec30058f648dcd1248da333a7bb6d47c.zip
Merge pull request #9396 from rhatdan/stop
When stopping a container, print rawInput
Diffstat (limited to 'pkg/domain/entities/containers.go')
-rw-r--r--pkg/domain/entities/containers.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go
index 2d50d6826..b89c42eab 100644
--- a/pkg/domain/entities/containers.go
+++ b/pkg/domain/entities/containers.go
@@ -88,8 +88,9 @@ type StopOptions struct {
}
type StopReport struct {
- Err error
- Id string //nolint
+ Err error
+ Id string //nolint
+ RawInput string
}
type TopOptions struct {