xoxys.ucs/tasks/filesystem.yml

16 lines
438 B
YAML
Raw Permalink Normal View History

---
- name: Set acl for shares
acl:
path: "{{ item.path }}"
entity: "{{ item.entity }}"
etype: "{{ item.etype }}"
permissions: "{{ item.permissions }}"
state: "{{ item.state | default('query') }}"
recursive: "{{ item.recursive | default('no') }}"
2018-11-26 21:25:36 +01:00
default: "{{ item.default | default('no') }}"
2019-08-27 08:25:49 +02:00
loop: "{{ ucs_filesystem_acl }}"
loop_control:
label: "{{ item.path }}"
2018-11-20 23:37:37 +01:00
become: True
become_user: root