diff options
author | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-06-14 14:04:03 +0900 |
---|---|---|
committer | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-06-14 14:04:03 +0900 |
commit | 4811cb110accec51df168742df6a319f48ed37b6 (patch) | |
tree | e6128ffefd9355620747002031ca4ca17811e81c /pkg/domain/infra/abi/network.go | |
parent | c044d455a1f42447fa800f0a5b4e83a7e271dbeb (diff) | |
download | podman-4811cb110accec51df168742df6a319f48ed37b6.tar.gz podman-4811cb110accec51df168742df6a319f48ed37b6.tar.bz2 podman-4811cb110accec51df168742df6a319f48ed37b6.zip |
podman system prune support prune unused networks
This is an enhancement for the podman system prune feature.
In this issue, it is mentioned that 'network prune' should be
wired into 'podman system prune'
https://github.com/containers/podman/issues/8673
Therefore, I add the function to remove unused networks.
Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
Diffstat (limited to 'pkg/domain/infra/abi/network.go')
-rw-r--r-- | pkg/domain/infra/abi/network.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/network.go b/pkg/domain/infra/abi/network.go index 47f7917f4..c5f3cf8b3 100644 --- a/pkg/domain/infra/abi/network.go +++ b/pkg/domain/infra/abi/network.go @@ -142,7 +142,7 @@ func (ic *ContainerEngine) NetworkExists(ctx context.Context, networkname string }, nil } -// Network prune removes unused cni networks +// Network prune removes unused networks func (ic *ContainerEngine) NetworkPrune(ctx context.Context, options entities.NetworkPruneOptions) ([]*entities.NetworkPruneReport, error) { cons, err := ic.Libpod.GetAllContainers() if err != nil { |