summaryrefslogtreecommitdiff
path: root/pkg/bindings/system/system.go
diff options
context:
space:
mode:
authorJohn Matthews <jwmatthews@gmail.com>2022-03-29 17:37:27 -0400
committerJohn Matthews <jwmatthews@gmail.com>2022-03-29 18:10:59 -0400
commit1ffcc4a8883b099e379a60c367e8a662c0e2c782 (patch)
tree72c671652093a8d74c4df39336b7df466f6d3ce6 /pkg/bindings/system/system.go
parentc319edaaf8013d8397c5847a761f53e68536635a (diff)
downloadpodman-1ffcc4a8883b099e379a60c367e8a662c0e2c782.tar.gz
podman-1ffcc4a8883b099e379a60c367e8a662c0e2c782.tar.bz2
podman-1ffcc4a8883b099e379a60c367e8a662c0e2c782.zip
Add 'Os' to be queried via 'version' output
Signed-off-by: John Matthews <jwmatthews@gmail.com>
Diffstat (limited to 'pkg/bindings/system/system.go')
-rw-r--r--pkg/bindings/system/system.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/bindings/system/system.go b/pkg/bindings/system/system.go
index 1eb90ab54..5ef78e444 100644
--- a/pkg/bindings/system/system.go
+++ b/pkg/bindings/system/system.go
@@ -120,6 +120,7 @@ func Version(ctx context.Context, options *VersionOptions) (*entities.SystemVers
BuiltTime: time.Unix(b.Unix(), 0).Format(time.ANSIC),
Built: b.Unix(),
OsArch: fmt.Sprintf("%s/%s", component.Os, component.Arch),
+ Os: component.Os,
}
for _, c := range component.Components {