mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-28 03:48:33 +01:00
8e63f12fbe
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
23 lines
610 B
YAML
23 lines
610 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Ensure Matrix base paths exists
|
|
ansible.builtin.file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
mode: "{{ matrix_base_data_path_mode }}"
|
|
owner: "{{ matrix_user_username }}"
|
|
group: "{{ matrix_user_groupname }}"
|
|
with_items:
|
|
- "{{ matrix_base_data_path }}"
|
|
- "{{ matrix_bin_path }}"
|
|
|
|
- name: Ensure remove-all script created
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/bin/remove-all.j2"
|
|
dest: "{{ matrix_bin_path }}/remove-all"
|
|
mode: 0750
|