From 6ad778c6b54239afdeff212475c745d8e722aedd Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 26 Feb 2024 14:24:14 -0600 Subject: [PATCH] [stable-2.16] Disable ansible-test podman container tests on Ubuntu 22.04 (#82748) (#82750) (cherry picked from commit 9a8be1e) --- test/integration/targets/ansible-test-container/runme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/targets/ansible-test-container/runme.py b/test/integration/targets/ansible-test-container/runme.py index a99004a0987..8603bcded8b 100755 --- a/test/integration/targets/ansible-test-container/runme.py +++ b/test/integration/targets/ansible-test-container/runme.py @@ -996,7 +996,7 @@ class AptBootstrapper(Bootstrapper): @classmethod def install_podman(cls) -> bool: """Return True if podman will be installed.""" - return not (os_release.id == 'ubuntu' and os_release.version_id == '20.04') + return not (os_release.id == 'ubuntu' and os_release.version_id in {'20.04', '22.04'}) @classmethod def install_docker(cls) -> bool: