diff options
Diffstat (limited to 'roles/common/tasks/repos.yml')
-rw-r--r-- | roles/common/tasks/repos.yml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/roles/common/tasks/repos.yml b/roles/common/tasks/repos.yml index 52abc62..fd0e113 100644 --- a/roles/common/tasks/repos.yml +++ b/roles/common/tasks/repos.yml @@ -1,5 +1,7 @@ - name: Installation du dépôt updates Fantom - copy: src=updates-fantom.repo dest=/etc/yum.repos.d/updates-fantom.repo + 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" @@ -37,13 +39,17 @@ - name: Installation du dépôt updates Hidden - copy: src=updates-fantom-hidden.repo dest=/etc/yum.repos.d/updates-fantom-hidden.repo + copy: + src: updates-fantom-hidden.repo + dest: /etc/yum.repos.d/updates-fantom-hidden.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 + copy: + src: fedora-fantom.repo + dest: /etc/yum.repos.d/fedora-fantom.repo when: ansible_distribution_version|int >= 24 and ansible_architecture == "x86_64" and ansible_distribution_release != "Rawhide" @@ -81,7 +87,9 @@ - name: Installation du dépôt Fedora fantom Hidden - copy: src=fedora-fantom-hidden.repo dest=/etc/yum.repos.d/fedora-fantom-hidden.repo + 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" |