summaryrefslogtreecommitdiff
path: root/libpod/info.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-01-07 10:01:44 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-01-07 10:02:26 -0500
commitb367855d5f87bffc980cbce28b35363a4e21ba7c (patch)
tree3d0c1427903b2b4f2a3afa1fcb418b03d749cc48 /libpod/info.go
parenta219431a317a2b6d9647ce81b7c845345e51b7da (diff)
downloadpodman-b367855d5f87bffc980cbce28b35363a4e21ba7c.tar.gz
podman-b367855d5f87bffc980cbce28b35363a4e21ba7c.tar.bz2
podman-b367855d5f87bffc980cbce28b35363a4e21ba7c.zip
Add the configuration file used to setup storage to podman info
Users have no idea what storage configuration file is used to setup storage, so adding this to podman info, should make it easier to discover. This requires a revendor of containers/storage Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/info.go')
-rw-r--r--libpod/info.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/info.go b/libpod/info.go
index 7044eba6a..a98f93897 100644
--- a/libpod/info.go
+++ b/libpod/info.go
@@ -13,6 +13,7 @@ import (
"time"
"github.com/containers/libpod/pkg/rootless"
+ "github.com/containers/libpod/pkg/util"
"github.com/containers/libpod/utils"
"github.com/containers/storage/pkg/system"
"github.com/pkg/errors"
@@ -115,6 +116,7 @@ func (r *Runtime) hostInfo() (map[string]interface{}, error) {
func (r *Runtime) storeInfo() (map[string]interface{}, error) {
// lets say storage driver in use, number of images, number of containers
info := map[string]interface{}{}
+ info["ConfigFile"] = util.StorageConfigFile()
info["GraphRoot"] = r.store.GraphRoot()
info["RunRoot"] = r.store.RunRoot()
info["GraphDriverName"] = r.store.GraphDriverName()