diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-25 08:53:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-25 08:53:01 -0500 |
commit | 2225c65f74b3358d810183558185a6344ef686ac (patch) | |
tree | 5b96a4bf5970d85c9f45c6e4e4e931fea3dac46e /libpod | |
parent | 2cb011ef2b17adbc7b1de1db4861f6e3eaa24025 (diff) | |
parent | 6f71fa6d9dc82a42cc3823247bd0aed0ea138162 (diff) | |
download | podman-2225c65f74b3358d810183558185a6344ef686ac.tar.gz podman-2225c65f74b3358d810183558185a6344ef686ac.tar.bz2 podman-2225c65f74b3358d810183558185a6344ef686ac.zip |
Merge pull request #13343 from afbjorklund/dpkg-package
Show version of the deb package in info output
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/util.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/util.go b/libpod/util.go index 307caa8c5..51fe60427 100644 --- a/libpod/util.go +++ b/libpod/util.go @@ -149,6 +149,14 @@ func queryPackageVersion(cmdArg ...string) string { cmd := exec.Command(cmdArg[0], cmdArg[1:]...) if outp, err := cmd.Output(); err == nil { output = string(outp) + if cmdArg[0] == "/usr/bin/dpkg" { + r := strings.Split(output, ": ") + queryFormat := `${Package}_${Version}_${Architecture}` + cmd = exec.Command("/usr/bin/dpkg-query", "-f", queryFormat, "-W", r[0]) + if outp, err := cmd.Output(); err == nil { + output = string(outp) + } + } } if cmdArg[0] == "/sbin/apk" { prefix := cmdArg[len(cmdArg)-1] + " is owned by " |