ceph-ansible/roles/ceph-common/tasks/installs/redhat_community_repository...

42 lines
1.2 KiB
YAML
Raw Normal View History

---
- name: install yum plugin priorities
package:
name: yum-plugin-priorities
register: result
until: result is succeeded
tags: with_pkg
when: ansible_distribution_major_version | int == 7
- name: configure red hat ceph community repository stable key
rpm_key:
key: "{{ ceph_stable_key }}"
state: present
register: result
until: result is succeeded
- name: configure red hat ceph stable community repository
yum_repository:
name: ceph_stable
description: Ceph Stable $basearch repo
gpgcheck: yes
state: present
gpgkey: "{{ ceph_stable_key }}"
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/el{{ ansible_distribution_major_version }}/$basearch"
file: ceph_stable
priority: 2
register: result
until: result is succeeded
- name: configure red hat ceph stable noarch community repository
yum_repository:
name: ceph_stable_noarch
description: Ceph Stable noarch repo
gpgcheck: yes
state: present
gpgkey: "{{ ceph_stable_key }}"
baseurl: "{{ ceph_mirror }}/rpm-{{ ceph_stable_release }}/el{{ ansible_distribution_major_version }}/noarch"
file: ceph_stable
priority: 2
register: result
until: result is succeeded