diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-11 15:15:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 15:15:18 +0200 |
commit | d473e6e35120ad254a62301a89be26e5ad589752 (patch) | |
tree | 99f35e8d868502febe889de3713f37fad58e3fcb /libpod/info.go | |
parent | 01f747fdc3b601492d496536ced1386172c4e3d8 (diff) | |
parent | c21258b70ed91ab5ff8b1d345123fed1011a49c9 (diff) | |
download | podman-d473e6e35120ad254a62301a89be26e5ad589752.tar.gz podman-d473e6e35120ad254a62301a89be26e5ad589752.tar.bz2 podman-d473e6e35120ad254a62301a89be26e5ad589752.zip |
Merge pull request #5566 from openSUSE/static-binary
Add podman static build
Diffstat (limited to 'libpod/info.go')
-rw-r--r-- | libpod/info.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/info.go b/libpod/info.go index 4007e0ce7..51208a2b1 100644 --- a/libpod/info.go +++ b/libpod/info.go @@ -14,6 +14,7 @@ import ( "github.com/containers/buildah" "github.com/containers/libpod/libpod/define" + "github.com/containers/libpod/libpod/linkmode" "github.com/containers/libpod/pkg/cgroups" registries2 "github.com/containers/libpod/pkg/registries" "github.com/containers/libpod/pkg/rootless" @@ -86,6 +87,7 @@ func (r *Runtime) hostInfo() (*define.HostInfo, error) { info := define.HostInfo{ Arch: runtime.GOARCH, BuildahVersion: buildah.Version, + Linkmode: linkmode.Linkmode(), CPUs: runtime.NumCPU(), Distribution: hostDistributionInfo, EventLogger: r.eventer.String(), |