2015-07-28 23:35:47 +08:00
|
|
|
---
|
2019-07-24 16:10:18 +08:00
|
|
|
- name: include_task systemd.yml
|
|
|
|
include_tasks: systemd.yml
|
2016-06-01 03:59:05 +08:00
|
|
|
|
|
|
|
- name: systemd start rgw container
|
2017-09-17 05:36:29 +08:00
|
|
|
systemd:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: ceph-radosgw@rgw.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}
|
2016-06-01 03:59:05 +08:00
|
|
|
state: started
|
|
|
|
enabled: yes
|
2019-03-20 18:35:36 +08:00
|
|
|
masked: no
|
2018-11-09 08:56:57 +08:00
|
|
|
daemon_reload: yes
|
|
|
|
with_items: "{{ rgw_instances }}"
|