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
K.C. Wong 2015-11-05 18:06:41 -08:00
parent b5544a1be7
commit 92246616e5
1 changed files with 1 additions and 1 deletions

View File

@ -29,4 +29,4 @@
name: ceph-radosgw
state: started
enabled: yes
when: ansible_distribution == 'RedHat'
when: ansible_os_family == 'RedHat'