summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/repos.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common/tasks/repos.yml')
-rw-r--r--roles/common/tasks/repos.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/roles/common/tasks/repos.yml b/roles/common/tasks/repos.yml
index acbae9b..2d1cece 100644
--- a/roles/common/tasks/repos.yml
+++ b/roles/common/tasks/repos.yml
@@ -41,6 +41,11 @@
when: ansible_distribution_version|int >= 20 and ansible_architecture == "x86_64"
and ansible_distribution_release != "Rawhide"
+- name: Installation du dépôt updates Fallback
+ copy: src=updates-fantom-fallback.repo dest=/etc/yum.repos.d/updates-fantom-fallback.repo
+ when: ansible_distribution_version|int >= 20 and ansible_architecture == "x86_64"
+ and ansible_distribution_release != "Rawhide"
+
- name: Installation du dépôt Fedora Fantom
copy: src=fedora-fantom.repo dest=/etc/yum.repos.d/fedora-fantom.repo
@@ -80,11 +85,17 @@
and ansible_distribution_release != "Rawhide" and outdoor is not defined
-- name: Installation du dépôt Fedora Hidden fantom
+- name: Installation du dépôt Fedora fantom Hidden
copy: src=fedora-fantom-hidden.repo dest=/etc/yum.repos.d/fedora-fantom-hidden.repo
when: ansible_distribution_version|int >= 24 and ansible_architecture == "x86_64"
and ansible_distribution_release != "Rawhide"
+- name: Installation du dépôt Fedora fantom Fallback
+ copy: src=fedora-fantom-fallback.repo dest=/etc/yum.repos.d/fedora-fantom-fallback.repo
+ when: ansible_distribution_version|int >= 24 and ansible_architecture == "x86_64"
+ and ansible_distribution_release != "Rawhide"
+
+
- name: Installation du dépôt EPEL pour Centos
yum: name=epel-release state=present
when: ansible_distribution == "CentOS" and ansible_pkg_mgr == "yum"