Work around this for now.

This commit is contained in:
Kevin Fenzi 2014-01-24 23:26:03 +00:00
parent 31a46523a1
commit d17fd8236a

View file

@ -4,7 +4,7 @@
with_items: with_items:
- epel6.repo - epel6.repo
- rhel6.repo - rhel6.repo
when: is_rhel == 'True' when: ansible_distribution == 'RedHat'
tags: tags:
- config - config
- packages - packages
@ -15,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 == 'x86_64' when: ansible_distribution == 'Fedora' and ansible_architecture == 'x86_64'
tags: tags:
- config - config
- packages - packages
@ -26,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 == 'armv7l' when: ansible_distribution == 'Fedora' and ansible_architecture == 'armv7l'
tags: tags:
- config - config
- packages - packages