From 9a05a2264442afe579ab7f83531b57af4703c3bd Mon Sep 17 00:00:00 2001 From: Viktor Berke Date: Sat, 21 Jan 2023 13:42:45 +0100 Subject: [PATCH] Workaround for EL9 curl bug --- tests/check.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/check.yml b/tests/check.yml index b56985e..63b1f1f 100644 --- a/tests/check.yml +++ b/tests/check.yml @@ -1,10 +1,13 @@ --- +# TODO On EL, cURL is installed by default. On top of that, on AlmaLinux 9, curl +# is broken, and on Fedora, curl-minimal is broken. So just skip it altogether. +# https://bugs.launchpad.net/tripleo/+bug/1953156 - name: Install cURL package: name: curl state: latest register: installed_curl - when: installed_curl is not defined + when: installed_curl is not defined and ansible_os_family != 'RedHat' - name: Wait for Tomcat to start up wait_for: