tools/appsre-ansible: workaround missing authselect-compat

See PR#3237.
This commit is contained in:
Sanne Raymaekers 2023-01-24 15:50:02 +01:00
parent 0a4a75e19e
commit 4833f99070

View file

@ -25,6 +25,18 @@
activationkey: "{{ RH_ACTIVATION_KEY }}"
org_id: "{{ RH_ORG_ID }}"
# Upgrading authselect without --allowerasing currently fails on RHEL 9.1 with RHUI repos
# https://issues.redhat.com/browse/RHUIOPS-84
# TODO: remove this once the issue is fixed
- name: Upgrade authselect package
dnf:
name: authselect
state: latest
allowerasing: yes
register: result
retries: 5
until: result is success
- name: Upgrade all packages
package:
name: "*"