summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/deps.yml
blob: 905bd13021edcecc39a2d705da2ba4163401254a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- name: Installation des dépendances du playbook
  dnf: name={{ item }} state=present
  with_items:
    - libselinux-python
    - python-dnf
  when: ansible_pkg_mgr == "dnf"

- name: Installation du module firewall pour python2
  dnf: name=python-firewall state=present
  when: ansible_pkg_mgr == "dnf" and ansible_distribution_version|int <= 27

- name: Installation du module firewall pour python3
  dnf: name=python3-firewall state=present
  when: ansible_pkg_mgr == "dnf" and ansible_distribution_version|int >= 28

- name: Installation des dépendances du playbook
  yum: name={{ item }} state=present
  with_items:
    - libselinux-python
    - python-dnf
    - python-firewall
  when: ansible_pkg_mgr == "yum"