mirror of https://github.com/ceph/ceph-ansible.git
13 lines
263 B
YAML
13 lines
263 B
YAML
|
---
|
||
|
- name: create bootstrap directories
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
owner: "64045"
|
||
|
group: "64045"
|
||
|
mode: "0755"
|
||
|
with_items:
|
||
|
- /etc/ceph
|
||
|
- /var/lib/ceph/mgr
|
||
|
- /var/lib/ceph/mgr/{{ cluster }}-{{ ansible_hostname }}
|