start: print full container ID

Now the "podman start" command prints the full ID and has the same
behaviour as other commands.

Signed-off-by: Boris Klimenko <2@borisklimenko.ru>
This commit is contained in:
bklimenko 2019-10-15 19:05:15 +03:00
parent 5f72e6ef2e
commit b4124485ae

View file

@ -663,7 +663,7 @@ func (r *LocalRuntime) Start(ctx context.Context, c *cliconfig.StartValues, sigP
lastError = errors.Wrapf(err, "unable to start container %q", container)
continue
}
fmt.Println(container)
fmt.Println(ctr.ID())
}
return exitCode, lastError
}