From b94ea07265045f447572c264ef62e7960f484b58 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 9 Sep 2019 15:37:35 -0500 Subject: enhance podman network rm when removing a podman network, we need to make sure we delete the network interface if one was ever created (by running a container). also, when removing networks, we check if any containers are using the network. if they are, we error out unless the user provides a 'force' option which will remove the containers in question. Signed-off-by: baude --- cmd/podman/cliconfig/config.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman/cliconfig') diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index bf88e853b..e0ce202cc 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -280,6 +280,7 @@ type NetworkListValues struct { type NetworkRmValues struct { PodmanCommand + Force bool } type NetworkInspectValues struct { -- cgit v1.2.3-54-g00ecf