summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/deps.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common/tasks/deps.yml')
-rw-r--r--roles/common/tasks/deps.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/roles/common/tasks/deps.yml b/roles/common/tasks/deps.yml
index cefac63..905bd13 100644
--- a/roles/common/tasks/deps.yml
+++ b/roles/common/tasks/deps.yml
@@ -3,9 +3,16 @@
with_items:
- libselinux-python
- python-dnf
- - python-firewall
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: