ansible/tasks/yumrepos.yml
Seth Vidal f7e0918af2 - add yumrepos.yml - separate from 'base'
- make sudo work with all hosts
add all to kernel-qa
2013-05-20 17:14:56 +00:00

18 lines
359 B
YAML

---
- name: put repos on system
action: copy src=$files/common/$item dest=/etc/yum.repos.d/$item
with_items:
- epel6.repo
- rhel6.repo
only_if: '$is_rhel'
tags:
- config
- packages
- name: add infrastructure repo
action: copy src=$files/common/infrastructure.repo dest=/etc/yum.repos.d/infrastructure.repo
tags:
- config
- packages