mirror of https://github.com/ceph/ceph-ansible.git
25 lines
449 B
YAML
25 lines
449 B
YAML
---
|
|
- name: create bootstrap directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: "64045"
|
|
group: "64045"
|
|
mode: "0755"
|
|
with_items:
|
|
- /etc/ceph/
|
|
- /var/lib/ceph/
|
|
- /var/lib/ceph/radosgw
|
|
|
|
- name: create ganesha directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: "0755"
|
|
with_items:
|
|
- /etc/ganesha/
|
|
- /var/lib/nfs/ganesha
|
|
- /var/run/ganesha
|