ceph-osd: use ini_file instead of yum_repository to enable Centos extras

Fixes issue #1041

Signed-off-by: Andrew Schoen <aschoen@redhat.com>

Resolves: issue#1041
pull/1050/head
Andrew Schoen 2016-10-25 14:16:42 -05:00
parent 860ee8cfc9
commit 3b2bd02c14
1 changed files with 6 additions and 5 deletions

View File

@ -5,11 +5,12 @@
state: present
when: ansible_os_family == 'Debian'
- name: enable extras repo on centos
yum_repository:
name: extras
state: present
enabled: yes
- name: enable extras repo for centos
ini_file:
dest: /etc/yum.repos.d/CentOS-Base.repo
section: extras
option: enabled
value: 1
when: ansible_distribution == 'CentOS'
- name: install redhat dependencies via yum