[stable-2.14] Disable ansible-test podman container tests on Ubuntu 22.04 (#82748) (#82754)

(cherry picked from commit 9a8be1e)
pull/82791/head
Matt Martz 9 months ago committed by GitHub
parent 6bc377e3f0
commit 93a5f75ae3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -996,7 +996,7 @@ class AptBootstrapper(Bootstrapper):
@classmethod @classmethod
def install_podman(cls) -> bool: def install_podman(cls) -> bool:
"""Return True if podman will be installed.""" """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 @classmethod
def install_docker(cls) -> bool: def install_docker(cls) -> bool:

Loading…
Cancel
Save