From ba763309b6e83f20d981bd359576d3c92a77d328 Mon Sep 17 00:00:00 2001 From: Matthieu Saulnier Date: Mon, 10 Nov 2014 22:31:11 +0100 Subject: 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 --- roles/common/tasks/repos.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'roles/common/tasks/repos.yml') 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" -- cgit