summaryrefslogtreecommitdiff
path: root/libpod/container.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-12-06 12:50:18 -0800
committerGitHub <noreply@github.com>2018-12-06 12:50:18 -0800
commitd37647ddf80aca7b07294a5141ffb7fb94e17359 (patch)
treeef0107963846ab60242e945e6f151542af1f37cb /libpod/container.go
parentfb3ceeb385b11efa7952c87698add01bdff01c54 (diff)
parent39a036e24d026b62e49ce7ba00de8bafd38cd953 (diff)
downloadpodman-d37647ddf80aca7b07294a5141ffb7fb94e17359.tar.gz
podman-d37647ddf80aca7b07294a5141ffb7fb94e17359.tar.bz2
podman-d37647ddf80aca7b07294a5141ffb7fb94e17359.zip
Merge pull request #1951 from baude/podcontainernet
bind mount /etc/resolv.conf|hosts in pods
Diffstat (limited to 'libpod/container.go')
-rw-r--r--libpod/container.go21
1 files changed, 18 insertions, 3 deletions
diff --git a/libpod/container.go b/libpod/container.go
index b6155a809..b5346e581 100644
--- a/libpod/container.go
+++ b/libpod/container.go
@@ -1001,13 +1001,28 @@ func (c *Container) IsReadOnly() bool {
}
// NetworkDisabled returns whether the container is running with a disabled network
-func (c *Container) NetworkDisabled() bool {
+func (c *Container) NetworkDisabled() (bool, error) {
+ if c.config.NetNsCtr != "" {
+ container, err := c.runtime.LookupContainer(c.config.NetNsCtr)
+ if err != nil {
+ return false, err
+ }
+ return networkDisabled(container)
+ }
+ return networkDisabled(c)
+
+}
+
+func networkDisabled(c *Container) (bool, error) {
+ if c.config.CreateNetNS {
+ return false, nil
+ }
if !c.config.PostConfigureNetNS {
for _, ns := range c.config.Spec.Linux.Namespaces {
if ns.Type == spec.NetworkNamespace {
- return ns.Path == ""
+ return ns.Path == "", nil
}
}
}
- return false
+ return false, nil
}