mirror of https://github.com/ceph/ceph-ansible.git
Fix pre-infernalis RBD client directory mode
0644 should never be a directory mode. 1777 makes it so that any user can create a ceph client, not just root. (This is helpful if, for instance, nova-compute is running as non-root.)pull/583/head
parent
8615dd0cce
commit
a157186ef6
|
@ -98,7 +98,7 @@
|
||||||
- set_fact:
|
- set_fact:
|
||||||
rbd_client_dir_owner: root
|
rbd_client_dir_owner: root
|
||||||
rbd_client_dir_group: root
|
rbd_client_dir_group: root
|
||||||
rbd_client_dir_mode: "0644"
|
rbd_client_dir_mode: "1777"
|
||||||
when: not is_ceph_infernalis
|
when: not is_ceph_infernalis
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|
Loading…
Reference in New Issue