summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/repos.yml
diff options
context:
space:
mode:
authorMatthieu Saulnier <fantom@fedoraproject.org>2014-11-10 22:31:11 +0100
committerMatthieu Saulnier <fantom@fedoraproject.org>2014-11-10 22:31:11 +0100
commitba763309b6e83f20d981bd359576d3c92a77d328 (patch)
tree256a4b3465c6008f9d7518656919abe42bd202b2 /roles/common/tasks/repos.yml
parent374c23ae7b3ba070057bb6dd5195a6ff0536021c (diff)
downloadplaybooks-ansible-ba763309b6e83f20d981bd359576d3c92a77d328.tar.gz
playbooks-ansible-ba763309b6e83f20d981bd359576d3c92a77d328.tar.xz
playbooks-ansible-ba763309b6e83f20d981bd359576d3c92a77d328.zip
Remove prelink stuff in clients role
Remove conglomerate package because it is not in f21 repositories Add task to install CLI burn software on hosts that have a burner Fix yum repository setting for f21 hosts - disable updates-testing repo - enable updates-testing local mirror
Diffstat (limited to 'roles/common/tasks/repos.yml')
-rw-r--r--roles/common/tasks/repos.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/common/tasks/repos.yml b/roles/common/tasks/repos.yml
index ee56584..e85a0e4 100644
--- a/roles/common/tasks/repos.yml
+++ b/roles/common/tasks/repos.yml
@@ -15,3 +15,19 @@
copy: src=updates-testing-fantom.repo dest=/etc/yum.repos.d/updates-testing-fantom.repo
when: ansible_distribution_version|int >= 20 and ansible_architecture == "x86_64"
and ansible_distribution_release != "Rawhide"
+
+- name: Désactivation du dépôt updates-testing
+ ini_file: dest=/etc/yum.repos.d/fedora-updates-testing.repo
+ section=updates-testing
+ option=enabled
+ value=0
+ when: ansible_distribution_version|int >= 21 and ansible_architecture == "x86_64"
+ and ansible_distribution_release != "Rawhide"
+
+- name: Activation du miroir updates-testing
+ ini_file: dest=/etc/yum.repos.d/updates-testing-fantom.repo
+ section=updates-testing-fantom
+ option=enabled
+ value=1
+ when: ansible_distribution_version|int >= 21 and ansible_architecture == "x86_64"
+ and ansible_distribution_release != "Rawhide"