From: Guillaume Abrioux Date: Wed, 22 Mar 2023 15:29:46 +0000 (+0100) Subject: tests: force rpm pkg upgrade X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b87f214a96be5f834ba166014d54815d17ff6dd7;p=ceph-ansible.git tests: force rpm pkg upgrade Due to a bug with the rpm version present in the current stream8 vagrant image, we have to make sure it is first upgraded to the latest version. Signed-off-by: Guillaume Abrioux --- diff --git a/tests/functional/setup.yml b/tests/functional/setup.yml index 1ec526507..e529bbeb1 100644 --- a/tests/functional/setup.yml +++ b/tests/functional/setup.yml @@ -58,6 +58,12 @@ # - ansible_facts['distribution_major_version'] | int > 7 # - not is_atomic | bool + - name: force rpm pkg upgrade + package: + name: rpm + state: latest + when: not is_atomic | bool + - name: update the system command: dnf update -y changed_when: false