mirror of https://github.com/ceph/ceph-ansible.git
25 lines
769 B
YAML
25 lines
769 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_facts['distribution_major_version'] }}/repo?arch={{ ansible_facts['architecture'] }}"
|
|
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
|
|
|
|
- name: remove ceph_stable repositories
|
|
yum_repository:
|
|
name: '{{ item }}'
|
|
file: ceph_stable
|
|
state: absent
|
|
with_items:
|
|
- ceph_stable
|
|
- ceph_stable_noarch
|