mirror of https://github.com/ceph/ceph-ansible.git
23 lines
453 B
YAML
23 lines
453 B
YAML
---
|
|
- name: create mgr directory
|
|
file:
|
|
path: /var/lib/ceph/mgr/
|
|
state: directory
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0755"
|
|
|
|
- name: create mgr directory
|
|
file:
|
|
path: /var/lib/ceph/mgr/{{ cluster }}-{{ ansible_hostname }}
|
|
state: directory
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0755"
|
|
|
|
- name: include copy_configs.yml
|
|
include: copy_configs.yml
|
|
|
|
- name: include start_docker_mgr.yml
|
|
include: start_docker_mgr.yml
|