Add EL9 packages
This commit is contained in:
parent
a5ae64f590
commit
982f703464
1 changed files with 11 additions and 0 deletions
|
@ -61,3 +61,14 @@
|
||||||
- python38-psutil
|
- python38-psutil
|
||||||
- toolbox
|
- toolbox
|
||||||
when: ansible_distribution_major_version == 8
|
when: ansible_distribution_major_version == 8
|
||||||
|
- name: Install CLI packages (EL 9)
|
||||||
|
become: true
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name: '{{ packages }}'
|
||||||
|
state: present
|
||||||
|
vars:
|
||||||
|
packages:
|
||||||
|
- "@container-tools"
|
||||||
|
- podman
|
||||||
|
- toolbox
|
||||||
|
when: ansible_distribution_major_version == 9
|
||||||
|
|
Loading…
Reference in a new issue