summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/repos.yml
blob: ee56584d507074de83155e8cd571fd3367002a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- name: Installation du miroir local updates
  copy: src=updates-fantom.repo dest=/etc/yum.repos.d/updates-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
  ini_file: dest=/etc/yum.repos.d/fedora-updates.repo
            section=updates
            option=enabled
            value=0
  when: ansible_distribution_version|int >= 20 and ansible_architecture == "x86_64"
        and ansible_distribution_release != "Rawhide"

- name: Installation du miroir updates-testing
  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"