mirror of https://github.com/ceph/ceph-ansible.git
13 lines
305 B
YAML
13 lines
305 B
YAML
|
---
|
||
|
# Use systemd to manage container on Atomic host
|
||
|
- name: include_tasks systemd.yml
|
||
|
include_tasks: systemd.yml
|
||
|
|
||
|
- name: systemd start rbd mirror container
|
||
|
systemd:
|
||
|
name: ceph-rbd-mirror@rbd-mirror.{{ ansible_hostname }}
|
||
|
state: started
|
||
|
enabled: yes
|
||
|
masked: no
|
||
|
daemon_reload: yes
|