mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-10 06:04:15 +00:00
20 lines
624 B
YAML
20 lines
624 B
YAML
---
|
|
- name: Permission Data
|
|
hosts: all
|
|
tasks:
|
|
- name: Warning!
|
|
ansible.builtin.debug:
|
|
msg: "This playbook will repermission ALL existing data in the shares defined in group_vars/all.yml to be owned by the ansible-nas user and group. If this is not what you want, exit now."
|
|
|
|
- name: 20s to change your mind...
|
|
ansible.builtin.pause:
|
|
seconds: 20
|
|
|
|
- name: "Permission share data"
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
owner: ansible-nas
|
|
group: ansible-nas
|
|
mode: "u=rwX,g=rwX,o=rX"
|
|
recurse: true
|
|
loop: "{{ samba_shares }}"
|