13 lines
329 B
YAML
13 lines
329 B
YAML
---
|
|
# handlers file for exim4
|
|
|
|
- name: Set default permissions on volumes folders
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
owner: "{{ podman_user }}"
|
|
group: "{{ podman_user }}"
|
|
become: true
|
|
loop: "{{ folders.results | selectattr('changed', 'equalto', true) }}"
|
|
loop_control:
|
|
label: "{{ item.path }}"
|