mirror of https://github.com/ceph/ceph-ansible.git
changed permissions under ceph user
when running under the user ceph the rbd client directory should be owned by cephpull/460/head
parent
38c5e6c259
commit
4dd993ebae
|
@ -100,13 +100,23 @@
|
||||||
- restart ceph rgws on red hat
|
- restart ceph rgws on red hat
|
||||||
- restart ceph rgws with systemd
|
- restart ceph rgws with systemd
|
||||||
|
|
||||||
- name: create rbd client directory
|
- name: create rbd client directory (before infernalis)
|
||||||
file:
|
file:
|
||||||
path: "{{ rbd_client_admin_socket_path }}"
|
path: "{{ rbd_client_admin_socket_path }}"
|
||||||
state: directory
|
state: directory
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
when: not is_ceph_infernalis
|
||||||
|
|
||||||
|
- name: create rbd client directory (for infernalis or after)
|
||||||
|
file:
|
||||||
|
path: "{{ rbd_client_admin_socket_path }}"
|
||||||
|
state: directory
|
||||||
|
owner: ceph
|
||||||
|
group: ceph
|
||||||
|
mode: 0770
|
||||||
|
when: is_ceph_infernalis
|
||||||
|
|
||||||
# NOTE (leseb): be careful with the following
|
# NOTE (leseb): be careful with the following
|
||||||
# somehow the YAML syntax using "is_ceph_infernalis: {{"
|
# somehow the YAML syntax using "is_ceph_infernalis: {{"
|
||||||
|
|
Loading…
Reference in New Issue