2015-07-28 23:35:47 +08:00
|
|
|
---
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include_task systemd.yml
|
|
|
|
ansible.builtin.include_tasks: systemd.yml
|
2016-06-01 03:59:05 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Systemd start rgw container
|
|
|
|
ansible.builtin.systemd:
|
2024-05-08 02:41:53 +08:00
|
|
|
name: ceph-radosgw@rgw.{{ rgw_zone }}.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}
|
2016-06-01 03:59:05 +08:00
|
|
|
state: started
|
2024-02-14 18:14:02 +08:00
|
|
|
enabled: true
|
|
|
|
masked: false
|
|
|
|
daemon_reload: true
|
2018-11-09 08:56:57 +08:00
|
|
|
with_items: "{{ rgw_instances }}"
|