Add infra tag repos

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2016-09-25 17:08:37 +00:00
parent ad8448b144
commit 3f8062e776
3 changed files with 28 additions and 0 deletions

View file

@ -56,3 +56,19 @@
- config
- packages
- yumrepos
- name: add infrastructure tags repo - RHEL
copy: src="{{ files }}/common/rhel-infra-tags.repo" dest="/etc/yum.repos.d/{{ item }}"
when: ansible_distribution == 'RedHat'
tags:
- config
- packages
- yumrepos
- name: add infrastructure tags repo - Fedora
copy: src="{{ files }}/common/fedora-infra-tags.repo" dest="/etc/yum.repos.d/{{ item }}"
when: ansible_distribution == 'Fedora'
tags:
- config
- packages
- yumrepos