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-08-03 23:39:57 +08:00
|
|
|
changed_when: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
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
|
|
|
|
2016-03-29 21:37:31 +08:00
|
|
|
- name: start and add that the rados gateway service to the init sequence (ubuntu)
|
|
|
|
command: initctl emit radosgw cluster={{ cluster }} id=rgw.{{ ansible_hostname }}
|
2015-08-03 23:39:57 +08:00
|
|
|
changed_when: false
|
2016-03-29 21:37:31 +08:00
|
|
|
failed_when: false
|
2015-07-07 19:48:37 +08:00
|
|
|
when: ansible_distribution == 'Ubuntu'
|
2015-07-07 17:19:50 +08:00
|
|
|
|
2015-11-21 05:34:29 +08:00
|
|
|
- name: start rgw on red hat (before or on infernalis)
|
2015-10-19 11:19:31 +08:00
|
|
|
service:
|
|
|
|
name: ceph-radosgw
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2015-11-20 22:09:34 +08:00
|
|
|
when:
|
|
|
|
ansible_os_family == 'RedHat' and
|
|
|
|
not is_ceph_infernalis
|
2015-11-21 05:34:29 +08:00
|
|
|
|
2016-03-29 07:37:39 +08:00
|
|
|
- name: enable systemd unit file for rgw instance (for or after infernalis)
|
|
|
|
file:
|
|
|
|
src: /usr/lib/systemd/system/ceph-radosgw@.service
|
|
|
|
dest: /etc/systemd/system/multi-user.target.wants/ceph-radosgw@rgw.{{ ansible_hostname }}.service
|
|
|
|
state: link
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
when:
|
|
|
|
ansible_distribution != "Ubuntu" and
|
|
|
|
is_ceph_infernalis
|
|
|
|
|
2015-11-21 05:34:29 +08:00
|
|
|
- name: start rgw on red hat (after infernalis)
|
|
|
|
service:
|
2016-03-18 01:34:56 +08:00
|
|
|
name: ceph-radosgw@rgw.{{ ansible_hostname }}
|
2015-11-21 05:34:29 +08:00
|
|
|
state: started
|
|
|
|
enabled: yes
|
2015-11-20 22:09:34 +08:00
|
|
|
when:
|
|
|
|
ansible_os_family == 'RedHat' and
|
|
|
|
is_ceph_infernalis
|