Merge "Allow to define owner/group/mode when copying extra ceph conf files"

This commit is contained in:
Zuul
2026-02-25 13:19:12 +00:00
committed by Gerrit Code Review

View File

@@ -25,9 +25,9 @@
ansible.builtin.copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
mode: "0644"
owner: "{{ item.owner | default('root') }}"
group: "{{ item.group | default('root') }}"
mode: "{{ item.mode | default('0644') }}"
notify:
- Restart os services
with_items: "{{ ceph_extra_confs }}"