mirror of https://github.com/ceph/ceph-ansible.git
13 lines
299 B
YAML
13 lines
299 B
YAML
|
---
|
||
|
- name: include_task systemd.yml
|
||
|
include_tasks: systemd.yml
|
||
|
|
||
|
- name: systemd start rgw container
|
||
|
systemd:
|
||
|
name: ceph-radosgw@rgw.{{ ansible_hostname }}.{{ item.instance_name }}
|
||
|
state: started
|
||
|
enabled: yes
|
||
|
masked: no
|
||
|
daemon_reload: yes
|
||
|
with_items: "{{ rgw_instances }}"
|