diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-04 14:06:52 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-09 06:17:28 -0500 |
commit | a59e2a1a114c039e1780aa2b08b9452dc569cdf4 (patch) | |
tree | 1e40d530bd96ef9e4609383788175852465c49b8 /cmd/podman/pods/prune.go | |
parent | dd295f297b6dd51d22c64c75f4ef4f80f953bbde (diff) | |
download | podman-a59e2a1a114c039e1780aa2b08b9452dc569cdf4.tar.gz podman-a59e2a1a114c039e1780aa2b08b9452dc569cdf4.tar.bz2 podman-a59e2a1a114c039e1780aa2b08b9452dc569cdf4.zip |
Repeat system pruning until there is nothing removed
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/pods/prune.go')
-rw-r--r-- | cmd/podman/pods/prune.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/pods/prune.go b/cmd/podman/pods/prune.go index 444b0f5e0..e069c9b7f 100644 --- a/cmd/podman/pods/prune.go +++ b/cmd/podman/pods/prune.go @@ -60,5 +60,5 @@ func prune(cmd *cobra.Command, args []string) error { if err != nil { return err } - return utils.PrintPodPruneResults(responses) + return utils.PrintPodPruneResults(responses, false) } |