Try this
This commit is contained in:
parent
54d4135670
commit
48e5075d85
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
|||
---
|
||||
|
||||
- name: put rhel repos on system
|
||||
action: copy src=$files/common/$item dest=/etc/yum.repos.d/$item
|
||||
with_items:
|
||||
|
@ -16,7 +15,7 @@
|
|||
- fedora.repo
|
||||
- fedora-updates.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:
|
||||
- config
|
||||
- packages
|
||||
|
@ -27,7 +26,7 @@
|
|||
- fedora.repo
|
||||
- fedora-updates.repo
|
||||
- fedora-updates-testing.repo
|
||||
when: is_fedora == 'True' and ansible_architecture is armv7l
|
||||
when: is_fedora == 'True' and ansible_architecture == 'armv7l'
|
||||
tags:
|
||||
- config
|
||||
- packages
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue