kolla-ansible/ansible/roles/manila/tasks/external_ceph.yml
wangwei 5d5ae0802e Modify permissions on ceph file in manila
Modify the permissions and owner of the ceph configuration file to be
consistent with other manila configuration files.

Change-Id: I9039196a1b26d74b313a02707dce8732a5e187cb
2018-04-04 14:53:01 +09:00

46 lines
1.3 KiB
YAML

---
- name: Ensuring config directory exists
file:
path: "{{ node_config_directory }}/manila-share"
state: "directory"
when:
- inventory_hostname in groups['manila-share']
- name: Copying over ceph.conf for manila
merge_configs:
sources:
- "{{ node_custom_config }}/manila/ceph.conf"
- "{{ node_custom_config }}/manila/manila-share/ceph.conf"
dest: "{{ node_config_directory }}/manila-share/ceph.conf"
mode: "0660"
become: true
when:
- inventory_hostname in groups['manila-share']
notify:
- Restart manila-share container
- name: Copy over Ceph keyring files for manila
copy:
src: "{{ item }}"
dest: "{{ node_config_directory }}/manila-share/"
mode: "0600"
become: true
with_fileglob:
- "{{ node_custom_config }}/manila/ceph.client.manila.keyring"
- "{{ node_custom_config }}/manila/manila/ceph.client.manila.keyring"
when:
- inventory_hostname in groups['manila-share']
notify:
- Restart manila-share container
- name: Ensuring config directory has correct owner and permission
become: true
file:
path: "{{ node_config_directory }}/{{ item }}"
recurse: yes
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
when: inventory_hostname in groups[item]
with_items:
- "manila-share"