summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-08 16:50:59 +0100
committerGitHub <noreply@github.com>2021-11-08 16:50:59 +0100
commit22ef488d246effddbb3f390dd3fd048dc0f5fe82 (patch)
tree40bd3e05c649ecae4bcf02ab17c43415294efd12 /test/system
parentc9ba1fb7d4565365ee4ad4f852cce13f2072574e (diff)
parent338eb9d75e217dc0c38d51c33967e49e5c0daae4 (diff)
downloadpodman-22ef488d246effddbb3f390dd3fd048dc0f5fe82.tar.gz
podman-22ef488d246effddbb3f390dd3fd048dc0f5fe82.tar.bz2
podman-22ef488d246effddbb3f390dd3fd048dc0f5fe82.zip
Merge pull request #12213 from flouthoc/system-connection-rm-all
system: Adds support for removing all named destination via `--all`
Diffstat (limited to 'test/system')
-rw-r--r--test/system/272-system-connection.bats5
1 files changed, 1 insertions, 4 deletions
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
}