Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions roles/vagrant_workarounds/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,3 @@
shell: rm -f /boot/*-generic.img
when:
- ansible_facts['os_family'] == 'Debian'

# workaround for https://issues.redhat.com/browse/RHEL-192424
- name: force downgrade to openssl-3.5.5-3.el9
ansible.builtin.dnf:
name: openssl-3.5.5-3.el9
state: present
allow_downgrade: true
when:
- ansible_facts['os_family'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
- ansible_facts['distribution'] == 'CentOS'

- name: don't install broken openssl on EL9
community.general.ini_file:
path: /etc/dnf/dnf.conf
section: main
option: excludepkgs
value: 'openssl-3.5.7-1.*,openssl-libs-3.5.7-1.*,openssl-fips-provider-3.5.7-1.*'
when:
- ansible_facts['os_family'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
- ansible_facts['distribution'] == 'CentOS'
Loading