Skip to content

Commit

Permalink
Revert "Fix virtualbmc install error at introspection stage"
Browse files Browse the repository at this point in the history
This is not the complete fix - we can avoid installing pyopenssl
in the first place by using the RPM, as it was originally meant
to work (but at the time there was no RPM on EL8).

This reverts commit 2f81c8f.

Change-Id: I95059626d974b3126e3e71a0063af48da5269be5
  • Loading branch information
tosky committed Aug 20, 2021
1 parent 2f81c8f commit e39e866
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions roles/patch_rpm/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,21 +185,3 @@
when: install.component.version|int >= 13
until: task_result is success
retries: 3


- name: remove RHEL8 specific packages
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8' | default(false)
block:
# Remove pyOpenSSL and rdopkg from pip for RHEL8
- name: remove pyOpenSSL and rdopkg from pip
become: yes
pip:
name:
- 'pyOpenSSL'
- 'rdopkg'
state: absent
executable: pip-3.6
until: task_result is success
retries: 3
delay: 3

0 comments on commit e39e866

Please sign in to comment.