summaryrefslogtreecommitdiff
path: root/libpod/info.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-15 06:25:00 -0400
committerGitHub <noreply@github.com>2021-09-15 06:25:00 -0400
commit4dd7bfdfaa3adf95af39fd45f74d49cea0c80064 (patch)
treefb5ee1ff8173f95d11aff3c6be643ed467826cad /libpod/info.go
parent10873c6f494fbc7a43365000f6f9702c21741077 (diff)
parent38c5f6721f9aa2dc2aea751c2e22afd4d9e370b5 (diff)
downloadpodman-4dd7bfdfaa3adf95af39fd45f74d49cea0c80064.tar.gz
podman-4dd7bfdfaa3adf95af39fd45f74d49cea0c80064.tar.bz2
podman-4dd7bfdfaa3adf95af39fd45f74d49cea0c80064.zip
Merge pull request #11556 from afbjorklund/distribution-info
Show variant and codename of the distribution
Diffstat (limited to 'libpod/info.go')
-rw-r--r--libpod/info.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/info.go b/libpod/info.go
index 31ec9cdc1..2eba4bbff 100644
--- a/libpod/info.go
+++ b/libpod/info.go
@@ -370,9 +370,15 @@ func (r *Runtime) GetHostDistributionInfo() define.DistributionInfo {
if strings.HasPrefix(l.Text(), "ID=") {
dist.Distribution = strings.TrimPrefix(l.Text(), "ID=")
}
+ if strings.HasPrefix(l.Text(), "VARIANT_ID=") {
+ dist.Variant = strings.Trim(strings.TrimPrefix(l.Text(), "VARIANT_ID="), "\"")
+ }
if strings.HasPrefix(l.Text(), "VERSION_ID=") {
dist.Version = strings.Trim(strings.TrimPrefix(l.Text(), "VERSION_ID="), "\"")
}
+ if strings.HasPrefix(l.Text(), "VERSION_CODENAME=") {
+ dist.Codename = strings.Trim(strings.TrimPrefix(l.Text(), "VERSION_CODENAME="), "\"")
+ }
}
return dist
}