2017-07-31 20:07:30 +00:00
|
|
|
---
|
|
|
|
|
2017-09-11 20:50:14 +00:00
|
|
|
- name: Ensure Matrix base path exists
|
|
|
|
file:
|
|
|
|
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-06-13 04:50:56 +00:00
|
|
|
- name: Preserve vars.yml on the server for easily restoring if it gets lost later on
|
|
|
|
copy:
|
2020-06-14 07:00:22 +00:00
|
|
|
src: "{{ matrix_vars_yml_snapshotting_src }}"
|
2020-06-13 04:50:56 +00:00
|
|
|
dest: "{{ matrix_base_data_path }}/vars.yml"
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
mode: '0660'
|
2020-06-14 07:00:22 +00:00
|
|
|
when: "matrix_vars_yml_snapshotting_enabled|bool"
|
2020-06-13 04:50:56 +00:00
|
|
|
|
2018-10-15 04:42:26 +00:00
|
|
|
# `docker_network` doesn't work as expected when the given network
|
|
|
|
# is a substring of a network that already exists.
|
|
|
|
#
|
|
|
|
# See:
|
|
|
|
# - https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/12
|
|
|
|
# - https://github.com/ansible/ansible/issues/32926
|
|
|
|
#
|
|
|
|
# Due to that, we employ a workaround below.
|
|
|
|
#
|
|
|
|
# - name: Ensure Matrix network is created in Docker
|
|
|
|
# docker_network:
|
|
|
|
# name: "{{ matrix_docker_network }}"
|
|
|
|
# driver: bridge
|
|
|
|
|
|
|
|
- name: Check existence of Matrix network in Docker
|
|
|
|
shell:
|
|
|
|
cmd: "docker network ls -q --filter='name=^{{ matrix_docker_network }}$'"
|
|
|
|
register: result_check_docker_network
|
|
|
|
changed_when: false
|
2019-09-17 20:16:31 +00:00
|
|
|
check_mode: no
|
2018-10-15 04:42:26 +00:00
|
|
|
|
|
|
|
- name: Create Matrix network in Docker
|
|
|
|
shell:
|
|
|
|
cmd: "docker network create --driver=bridge {{ matrix_docker_network }}"
|
2019-09-17 20:16:31 +00:00
|
|
|
when: "result_check_docker_network.stdout == '' and not ansible_check_mode"
|
2018-11-28 10:02:51 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-remove-all script created
|
|
|
|
template:
|
|
|
|
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
|