diff --git a/tasks/ceph_config_extra.yml b/tasks/ceph_config_extra.yml index 4f4a50f..ad27803 100644 --- a/tasks/ceph_config_extra.yml +++ b/tasks/ceph_config_extra.yml @@ -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 }}"