2015-01-21 01:43:47 +08:00
|
|
|
---
|
2015-07-07 17:19:50 +08:00
|
|
|
- name: check if rgw is started
|
2015-01-21 01:43:47 +08:00
|
|
|
command: /etc/init.d/radosgw status
|
|
|
|
register: rgwstatus
|
2015-07-01 00:43:43 +08:00
|
|
|
ignore_errors: true
|
2015-03-23 19:20:00 +08:00
|
|
|
|
2015-07-07 17:19:50 +08:00
|
|
|
- name: start rgw
|
2015-06-03 22:31:51 +08:00
|
|
|
command: /etc/init.d/radosgw start
|
2015-06-26 06:26:03 +08:00
|
|
|
when:
|
|
|
|
rgwstatus.rc != 0 and
|
|
|
|
ansible_distribution != "Ubuntu" and
|
|
|
|
ansible_os_family != 'RedHat'
|
2015-06-03 22:31:51 +08:00
|
|
|
|
2015-07-07 19:48:37 +08:00
|
|
|
- name: start rgw on ubuntu
|
2015-07-03 00:23:11 +08:00
|
|
|
service: >
|
|
|
|
name=radosgw-all
|
|
|
|
state=started
|
2015-07-07 19:48:37 +08:00
|
|
|
when: ansible_distribution == 'Ubuntu'
|
2015-07-07 17:19:50 +08:00
|
|
|
|
2015-07-07 19:48:37 +08:00
|
|
|
- name: start rgw on red hat
|
2015-07-03 00:23:11 +08:00
|
|
|
service: >
|
|
|
|
name=ceph-radosgw
|
|
|
|
state=started
|
|
|
|
enabled=yes
|
2015-07-07 19:48:37 +08:00
|
|
|
when: ansible_distribution == 'RedHat'
|