summaryrefslogtreecommitdiffstats
path: root/roles/repos/tasks/main.yaml
blob: a6a80581e8a6efbde691dbd01901ee65ba6fff2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
# The following role lays down the correct repository and gpg key for yum
- name: Ensure rhel 7 libra candidate exists in yum.repos.d
  copy: src=rhel-7-libra-candidate.repo dest=/etc/yum.repos.d/rhel-7-libra-candidate.repo

- name: Ensure rhel 7 extras exists in yum.repos.d
  copy: src=oso-rhui-rhel-7-extras.repo dest=/etc/yum.repos.d/oso-rhui-rhel-7-extras.repo

- name: Ensure the kubernetes repo is available
  copy: src=epel7-kubernetes.repo dest=/etc/yum.repos.d/epel7-kubernetes.repo

- name: Ensure the origin repo is available
  copy: src=epel7-openshift.repo dest=/etc/yum.repos.d/epel7-openshift.repo

- name: Ensure the rhel repo is available
  copy: src=oso-rhui-rhel-7-server.repo dest=/etc/yum.repos.d/oso-rhui-rhel-7-server.repo