2015-07-28 23:35:47 +08:00
|
|
|
---
|
2016-06-01 03:59:05 +08:00
|
|
|
- name: generate systemd unit file
|
|
|
|
become: true
|
|
|
|
template:
|
2017-07-29 07:00:06 +08:00
|
|
|
src: "{{ role_path }}/templates/ceph-radosgw.service.j2"
|
|
|
|
dest: /etc/systemd/system/ceph-radosgw@.service
|
2016-06-01 03:59:05 +08:00
|
|
|
owner: "root"
|
|
|
|
group: "root"
|
|
|
|
mode: "0644"
|
|
|
|
|
2017-07-29 07:00:06 +08:00
|
|
|
# For backward compatibility
|
|
|
|
- name: disable old systemd unit ('ceph-rgw@') if present
|
2017-09-17 05:36:29 +08:00
|
|
|
systemd:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: stopped
|
|
|
|
enabled: no
|
|
|
|
daemon_reload: yes
|
|
|
|
with_items:
|
|
|
|
- "ceph-rgw@{{ ansible_hostname }}"
|
|
|
|
- "ceph-radosgw@{{ ansible_hostname }}.service"
|
2017-07-29 07:00:06 +08:00
|
|
|
ignore_errors: true
|
|
|
|
|
2016-06-01 03:59:05 +08:00
|
|
|
- name: systemd start rgw container
|
2017-09-17 05:36:29 +08:00
|
|
|
systemd:
|
|
|
|
name: "ceph-radosgw@rgw.{{ ansible_hostname }}.service"
|
2016-06-01 03:59:05 +08:00
|
|
|
state: started
|
|
|
|
enabled: yes
|
2017-09-17 05:36:29 +08:00
|
|
|
daemon_reload: yes
|
2016-06-01 03:59:05 +08:00
|
|
|
changed_when: false
|