mirror of https://github.com/ceph/ceph-ansible.git
common: install python3-packaging on centos el8
ceph-volume has a dependency on `python3-packaging` which is available
in PowerTools repo.
Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
(cherry picked from commit 3817dd447f
)
stable-8.0-test
parent
27f8dfcb0f
commit
df8216b0a1
|
@ -8,6 +8,13 @@
|
|||
when:
|
||||
- ansible_facts['distribution'] == 'Rocky'
|
||||
|
||||
- name: Install python3-packaging
|
||||
ansible.builtin.yum:
|
||||
name: python3-packaging
|
||||
enablerepo: powertools
|
||||
state: present
|
||||
when: ansible_facts['distribution_major_version'] | int < 9
|
||||
|
||||
- name: Include redhat_community_repository.yml
|
||||
ansible.builtin.include_tasks: redhat_community_repository.yml
|
||||
when: ceph_repository == 'community'
|
||||
|
|
Loading…
Reference in New Issue