mirror of https://github.com/ceph/ceph-ansible.git
15 lines
378 B
YAML
15 lines
378 B
YAML
---
|
|
- name: create bootstrap directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: "{{ bootstrap_dirs_owner }}"
|
|
group: "{{ bootstrap_dirs_group }}"
|
|
mode: "0755"
|
|
with_items:
|
|
- "{{ ceph_conf_key_directory }}"
|
|
- /var/lib/ceph/bootstrap-osd
|
|
- /var/lib/ceph/bootstrap-mds
|
|
- /var/lib/ceph/bootstrap-rgw
|
|
- /var/lib/ceph/bootstrap-rbd
|