mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1050 from ceph/issue-1041
ceph-osd: use ini_file instead of yum_repository to enable Centos extraspull/1053/merge
commit
63239e05cf
|
@ -5,11 +5,12 @@
|
||||||
state: present
|
state: present
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- name: enable extras repo on centos
|
- name: enable extras repo for centos
|
||||||
yum_repository:
|
ini_file:
|
||||||
name: extras
|
dest: /etc/yum.repos.d/CentOS-Base.repo
|
||||||
state: present
|
section: extras
|
||||||
enabled: yes
|
option: enabled
|
||||||
|
value: 1
|
||||||
when: ansible_distribution == 'CentOS'
|
when: ansible_distribution == 'CentOS'
|
||||||
|
|
||||||
- name: install redhat dependencies via yum
|
- name: install redhat dependencies via yum
|
||||||
|
|
Loading…
Reference in New Issue