summaryrefslogtreecommitdiff
path: root/libpod/container_inspect.go
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2018-03-27 10:07:06 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-27 14:46:17 +0000
commit26d7e3c7b85e28c4e42998c90fdcc14079f13eef (patch)
treeb5f29ad6e00b832bb13b072e11db6ba5187601c8 /libpod/container_inspect.go
parent304bf53c28301a8dfd126f2304e02df5472e56b1 (diff)
downloadpodman-26d7e3c7b85e28c4e42998c90fdcc14079f13eef.tar.gz
podman-26d7e3c7b85e28c4e42998c90fdcc14079f13eef.tar.bz2
podman-26d7e3c7b85e28c4e42998c90fdcc14079f13eef.zip
Fix some minor issues lint has been picking up
Signed-off-by: Matthew Heon <mheon@redhat.com> Closes: #556 Approved by: baude
Diffstat (limited to 'libpod/container_inspect.go')
-rw-r--r--libpod/container_inspect.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/libpod/container_inspect.go b/libpod/container_inspect.go
index bbfcd4446..0fdce13c0 100644
--- a/libpod/container_inspect.go
+++ b/libpod/container_inspect.go
@@ -30,18 +30,18 @@ func (c *Container) getContainerInspectData(size bool, driverData *inspect.Data)
}
resolvPath := ""
- if path, ok := c.state.BindMounts["/etc/resolv.conf"]; ok {
- resolvPath = path
+ if getPath, ok := c.state.BindMounts["/etc/resolv.conf"]; ok {
+ resolvPath = getPath
}
hostsPath := ""
- if path, ok := c.state.BindMounts["/etc/hosts"]; ok {
- hostsPath = path
+ if getPath, ok := c.state.BindMounts["/etc/hosts"]; ok {
+ hostsPath = getPath
}
hostnamePath := ""
- if path, ok := c.state.BindMounts["/etc/hostname"]; ok {
- hostnamePath = path
+ if getPath, ok := c.state.BindMounts["/etc/hostname"]; ok {
+ hostnamePath = getPath
}
data := &inspect.ContainerInspectData{