mirror of https://github.com/ceph/ceph-ansible.git
This change address radosgw not getting started on CentOS
* The explicit check of 'ansible_distribution' being 'RedHat' will not work on CentOS hosts. * Check the value of 'ansible_os_family' instead.pull/433/head
parent
b5544a1be7
commit
92246616e5
|
@ -29,4 +29,4 @@
|
|||
name: ceph-radosgw
|
||||
state: started
|
||||
enabled: yes
|
||||
when: ansible_distribution == 'RedHat'
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
|
Loading…
Reference in New Issue