mirror of https://github.com/ceph/ceph-ansible.git
Make acls and mode parameters of opentack_keys optional
Only chmod or setfacl the requested keyring(s) in the opentack_keys data structure when the mode or acls keys of that data structure exist. User may specify four permission combinations for the keyring file(s): 1. only set ACL, 2. only set mode, 3. set neither mode nor ACL, 4. set mode and then ACL. Fixes: #2092pull/2110/head
parent
5f9e50dabe
commit
ae156e9f34
|
@ -70,6 +70,15 @@
|
|||
docker_exec_client_cmd:
|
||||
when: docker_exec_client_cmd == 'ceph'
|
||||
|
||||
- name: chmod key(s)
|
||||
file:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
||||
mode: "{{ item.mode|default(omit) }}" # if mode not in list, uses mode from ps umask
|
||||
with_items: "{{ keys }}"
|
||||
when:
|
||||
- cephx
|
||||
- keys | length > 0
|
||||
|
||||
- name: setfacl for key(s)
|
||||
acl:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.0.name }}.keyring"
|
||||
|
@ -82,12 +91,3 @@
|
|||
when:
|
||||
- cephx
|
||||
- keys | length > 0
|
||||
|
||||
- name: chmod key(s)
|
||||
file:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
||||
mode: "{{ item.mode }}"
|
||||
with_items: "{{ keys }}"
|
||||
when:
|
||||
- cephx
|
||||
- keys | length > 0
|
||||
|
|
|
@ -50,6 +50,15 @@
|
|||
- openstack_config
|
||||
- item.0 != groups[mon_group_name] | last
|
||||
|
||||
- name: chmod openstack key(s)
|
||||
file:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
||||
mode: "{{ item.mode|default(omit) }}" # if mode not in list, uses mode from ps umask
|
||||
with_items: "{{ openstack_keys }}"
|
||||
when:
|
||||
- openstack_config
|
||||
- cephx
|
||||
|
||||
- name: setfacl for openstack key(s)
|
||||
acl:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.0.name }}.keyring"
|
||||
|
@ -62,12 +71,3 @@
|
|||
when:
|
||||
- openstack_config
|
||||
- cephx
|
||||
|
||||
- name: chmod openstack key(s)
|
||||
file:
|
||||
path: "/etc/ceph/{{ cluster }}.{{ item.name }}.keyring"
|
||||
mode: "{{ item.mode }}"
|
||||
with_items: "{{ openstack_keys }}"
|
||||
when:
|
||||
- openstack_config
|
||||
- cephx
|
||||
|
|
Loading…
Reference in New Issue