2017-07-31 20:07:30 +00:00
|
|
|
---
|
|
|
|
|
2017-09-11 20:50:14 +00:00
|
|
|
- name: Ensure Matrix base path exists
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2017-09-11 20:50:14 +00:00
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
2019-01-14 13:28:37 +00:00
|
|
|
mode: "{{ matrix_base_data_path_mode }}"
|
2017-09-11 20:50:14 +00:00
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2017-09-11 20:50:14 +00:00
|
|
|
with_items:
|
2017-10-24 04:01:11 +00:00
|
|
|
- "{{ matrix_base_data_path }}"
|
2018-08-08 05:23:36 +00:00
|
|
|
|
2020-08-02 18:54:13 +00:00
|
|
|
- name: Ensure Matrix network is created in Docker
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_network:
|
2020-08-02 18:54:13 +00:00
|
|
|
name: "{{ matrix_docker_network }}"
|
|
|
|
driver: bridge
|
2018-11-28 10:02:51 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-remove-all script created
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2018-11-28 10:02:51 +00:00
|
|
|
src: "{{ role_path }}/templates/usr-local-bin/matrix-remove-all.j2"
|
2020-03-24 18:27:58 +00:00
|
|
|
dest: "{{ matrix_local_bin_path }}/matrix-remove-all"
|
2018-11-28 10:02:51 +00:00
|
|
|
mode: 0750
|