mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
13 lines
282 B
YAML
13 lines
282 B
YAML
|
---
|
||
|
|
||
|
- name: Delete cache files
|
||
|
ansible.builtin.file:
|
||
|
state: "{{ item }}"
|
||
|
path: "{{ matrix_bot_matrix_registration_bot_data_path }}"
|
||
|
mode: 0750
|
||
|
owner: "{{ matrix_user_username }}"
|
||
|
group: "{{ matrix_user_groupname }}"
|
||
|
with_items:
|
||
|
- absent
|
||
|
- directory
|