mirror of https://github.com/ceph/ceph-ansible.git
16 lines
538 B
YAML
16 lines
538 B
YAML
---
|
|
- name: fetch ceph red hat development repository
|
|
uri:
|
|
# Use the centos repo since we don't currently have a dedicated red hat repo
|
|
url: https://shaman.ceph.com/api/repos/ceph/{{ ceph_dev_branch }}/{{ ceph_dev_sha1 }}/centos/{{ ansible_distribution_major_version }}/repo
|
|
return_content: yes
|
|
register: ceph_dev_yum_repo
|
|
|
|
- name: configure ceph red hat development repository
|
|
copy:
|
|
content: "{{ ceph_dev_yum_repo.content }}"
|
|
dest: /etc/yum.repos.d/ceph-dev.repo
|
|
owner: root
|
|
group: root
|
|
backup: yes
|