aboutsummaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2020-04-30 12:19:34 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2020-04-30 12:23:19 +0200
commit9d373408b57d42a9677eac6f268bfd443a67251c (patch)
tree1fb173a8820105929fb013c1df876ebe4e11f4af /pkg/domain/entities
parent1d34977b4c5af444a044ab9ae72ce72226147fc9 (diff)
downloadpodman-9d373408b57d42a9677eac6f268bfd443a67251c.tar.gz
podman-9d373408b57d42a9677eac6f268bfd443a67251c.tar.bz2
podman-9d373408b57d42a9677eac6f268bfd443a67251c.zip
podman, start: propagate back the raw input
this is necessary as we expect "podman start $ID_NAME" to print the same arguments the user passed in instead of the full ID. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/containers.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go
index e58258b75..622e8eb5b 100644
--- a/pkg/domain/entities/containers.go
+++ b/pkg/domain/entities/containers.go
@@ -227,6 +227,7 @@ type ContainerStartOptions struct {
// containers from the cli
type ContainerStartReport struct {
Id string
+ RawInput string
Err error
ExitCode int
}