ceph-ansible/roles/ceph-rgw/tasks/start_docker_rgw.yml

13 lines
308 B
YAML

---
- name: include_task systemd.yml
include_tasks: systemd.yml
- name: systemd start rgw container
systemd:
name: ceph-radosgw@rgw.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}
state: started
enabled: yes
masked: no
daemon_reload: yes
with_items: "{{ rgw_instances }}"