diff options
author | Wim <wim@42.be> | 2018-06-17 17:40:39 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-18 14:20:30 +0000 |
commit | 4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328 (patch) | |
tree | 69bf2c39b3e204f27230f97684315dfb5264973b /libpod/networking.go | |
parent | fc81dd71feef94cc754485ee2a38444eb67c4d8c (diff) | |
download | podman-4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328.tar.gz podman-4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328.tar.bz2 podman-4d3db1b4a9ec1a1a2aa74e3da0102b6017f8a328.zip |
Add MacAddress to inspect
Signed-off-by: Wim <wim@42.be>
Closes: #955
Approved by: rhatdan
Diffstat (limited to 'libpod/networking.go')
-rw-r--r-- | libpod/networking.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/networking.go b/libpod/networking.go index 74ca340a0..afa18b534 100644 --- a/libpod/networking.go +++ b/libpod/networking.go @@ -55,6 +55,7 @@ func (r *Runtime) configureNetNS(ctr *Container, ctrNS ns.NetNS) (err error) { ctr.state.NetNS = ctrNS ctr.state.IPs = resultStruct.IPs ctr.state.Routes = resultStruct.Routes + ctr.state.Interfaces = resultStruct.Interfaces // We need to temporarily use iptables to allow the container // to resolve DNS until this issue is fixed upstream. |