From 338eb9d75e217dc0c38d51c33967e49e5c0daae4 Mon Sep 17 00:00:00 2001 From: Aditya Rajan Date: Mon, 8 Nov 2021 16:01:57 +0530 Subject: system: Adds support for removing all named destination via --all Adds support of dropping all named destination from system connections via `--all`. Closes: https://github.com/containers/podman/issues/12018 Signed-off-by: Aditya Rajan --- test/system/272-system-connection.bats | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'test/system') diff --git a/test/system/272-system-connection.bats b/test/system/272-system-connection.bats index 5a90d9398..14c4f6664 100644 --- a/test/system/272-system-connection.bats +++ b/test/system/272-system-connection.bats @@ -34,10 +34,7 @@ function teardown() { | xargs -l1 --no-run-if-empty umount # Remove all system connections - run_podman system connection ls --format json - while read name; do - run_podman system connection rm "$name" - done < <(jq -r '.[].Name' <<<"$output") + run_podman system connection rm --all basic_teardown } -- cgit v1.2.3-54-g00ecf