This commit is contained in:
Kevin Fenzi 2013-09-25 20:51:42 +00:00
parent 54d4135670
commit 48e5075d85

View file

@ -1,5 +1,4 @@
--- ---
- name: put rhel repos on system - name: put rhel repos on system
action: copy src=$files/common/$item dest=/etc/yum.repos.d/$item action: copy src=$files/common/$item dest=/etc/yum.repos.d/$item
with_items: with_items:
@ -16,7 +15,7 @@
- fedora.repo - fedora.repo
- fedora-updates.repo - fedora-updates.repo
- fedora-updates-testing.repo - fedora-updates-testing.repo
when: is_fedora == 'True' and ansible_architecture is 'x86_64' when: is_fedora == 'True' and ansible_architecture == 'x86_64'
tags: tags:
- config - config
- packages - packages
@ -27,7 +26,7 @@
- fedora.repo - fedora.repo
- fedora-updates.repo - fedora-updates.repo
- fedora-updates-testing.repo - fedora-updates-testing.repo
when: is_fedora == 'True' and ansible_architecture is armv7l when: is_fedora == 'True' and ansible_architecture == 'armv7l'
tags: tags:
- config - config
- packages - packages