From 9c94530bbe575544d3dceeb591bc3c836a367e22 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 9 Nov 2021 16:25:24 +0100 Subject: network reload without ports should not reload ports When run as rootless the podman network reload command tries to reload the rootlessport ports because the childIP could have changed. However if the containers has no ports we should skip this instead of printing a warning. Signed-off-by: Paul Holzinger --- libpod/networking_slirp4netns.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libpod') diff --git a/libpod/networking_slirp4netns.go b/libpod/networking_slirp4netns.go index 07c3aae3c..c06d215e1 100644 --- a/libpod/networking_slirp4netns.go +++ b/libpod/networking_slirp4netns.go @@ -629,6 +629,9 @@ func getRootlessPortChildIP(c *Container) string { // reloadRootlessRLKPortMapping will trigger a reload for the port mappings in the rootlessport process. // This should only be called by network connect/disconnect and only as rootless. func (c *Container) reloadRootlessRLKPortMapping() error { + if len(c.config.PortMappings) == 0 { + return nil + } childIP := getRootlessPortChildIP(c) logrus.Debugf("reloading rootless ports for container %s, childIP is %s", c.config.ID, childIP) -- cgit v1.2.3-54-g00ecf