mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00
Fix setting of version information
It was setting the wrong variable (CamelCase) in the wrong module ("main", not "libpod")... Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
This commit is contained in:
@ -34,6 +34,10 @@ func (i *LibpodAPI) Ping(call iopodman.VarlinkCall) error {
|
||||
|
||||
// GetInfo returns details about the podman host and its stores
|
||||
func (i *LibpodAPI) GetInfo(call iopodman.VarlinkCall) error {
|
||||
versionInfo, err := libpod.GetVersion()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var (
|
||||
registries, insecureRegistries []string
|
||||
)
|
||||
@ -64,11 +68,10 @@ func (i *LibpodAPI) GetInfo(call iopodman.VarlinkCall) error {
|
||||
podmanInfo.Host = infoHost
|
||||
store := info[1].Data
|
||||
pmaninfo := iopodman.InfoPodmanBinary{
|
||||
Compiler: goruntime.Compiler,
|
||||
Go_version: goruntime.Version(),
|
||||
// TODO : How are we going to get this here?
|
||||
//Podman_version:
|
||||
Git_commit: libpod.GitCommit,
|
||||
Compiler: goruntime.Compiler,
|
||||
Go_version: goruntime.Version(),
|
||||
Podman_version: versionInfo.Version,
|
||||
Git_commit: versionInfo.GitCommit,
|
||||
}
|
||||
|
||||
graphStatus := iopodman.InfoGraphStatus{
|
||||
|
Reference in New Issue
Block a user