2018-05-25 18:58:53 +00:00
|
|
|
---
|
|
|
|
|
2021-01-14 21:23:46 +00:00
|
|
|
# This is a cleanup/migration task. It can be removed some time in the future.
|
|
|
|
- name: (Migration) Remove deprecated cronjob
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_cron_path }}/matrix-coturn-ssl-reload"
|
|
|
|
state: absent
|
|
|
|
|
2020-03-07 23:24:00 +00:00
|
|
|
- name: Ensure Matrix Coturn path exists
|
|
|
|
file:
|
2020-03-18 16:24:03 +00:00
|
|
|
path: "{{ item.path }}"
|
2020-03-07 23:24:00 +00:00
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2020-03-07 23:24:00 +00:00
|
|
|
with_items:
|
2020-03-18 16:24:03 +00:00
|
|
|
- { path: "{{ matrix_coturn_docker_src_files_path }}", when: "{{ matrix_coturn_container_image_self_build }}"}
|
2021-01-14 20:11:38 +00:00
|
|
|
when: "item.when|bool"
|
2020-03-07 23:24:00 +00:00
|
|
|
|
2018-05-25 18:58:53 +00:00
|
|
|
- name: Ensure Coturn image is pulled
|
|
|
|
docker_image:
|
2018-11-01 06:46:47 +00:00
|
|
|
name: "{{ matrix_coturn_docker_image }}"
|
2019-05-22 10:43:33 +00:00
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
2019-06-10 11:23:51 +00:00
|
|
|
force_source: "{{ matrix_coturn_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_coturn_docker_image_force_pull }}"
|
2021-01-14 20:11:38 +00:00
|
|
|
when: "not matrix_coturn_container_image_self_build|bool"
|
2020-02-19 21:18:17 +00:00
|
|
|
|
2021-01-14 21:23:46 +00:00
|
|
|
- block:
|
|
|
|
- name: Ensure Coturn repository is present on self-build
|
|
|
|
git:
|
|
|
|
repo: "{{ matrix_coturn_container_image_self_build_repo }}"
|
|
|
|
dest: "{{ matrix_coturn_docker_src_files_path }}"
|
|
|
|
version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
|
|
|
register: matrix_coturn_git_pull_results
|
2020-02-19 21:18:17 +00:00
|
|
|
|
2021-01-14 21:23:46 +00:00
|
|
|
- name: Ensure Coturn Docker image is built
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_coturn_docker_image }}"
|
|
|
|
source: build
|
|
|
|
force_source: "{{ matrix_coturn_git_pull_results.changed }}"
|
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_coturn_docker_src_files_path }}"
|
|
|
|
pull: yes
|
2021-01-14 20:11:38 +00:00
|
|
|
when: "matrix_coturn_container_image_self_build|bool"
|
2018-05-25 18:58:53 +00:00
|
|
|
|
|
|
|
- name: Ensure Coturn configuration path exists
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_coturn_base_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2018-05-25 18:58:53 +00:00
|
|
|
|
|
|
|
- name: Ensure turnserver.conf installed
|
|
|
|
template:
|
2019-01-12 15:53:00 +00:00
|
|
|
src: "{{ role_path }}/templates/turnserver.conf.j2"
|
2018-05-25 18:58:53 +00:00
|
|
|
dest: "{{ matrix_coturn_config_path }}"
|
|
|
|
mode: 0644
|
2021-01-14 21:23:46 +00:00
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
2018-05-25 18:58:53 +00:00
|
|
|
|
2020-08-02 19:13:45 +00:00
|
|
|
- name: Ensure Coturn network is created in Docker
|
|
|
|
docker_network:
|
|
|
|
name: "{{ matrix_coturn_docker_network }}"
|
|
|
|
driver: bridge
|
2019-03-18 15:36:00 +00:00
|
|
|
|
2018-05-25 18:58:53 +00:00
|
|
|
- name: Ensure matrix-coturn.service installed
|
|
|
|
template:
|
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-coturn.service.j2"
|
2020-03-24 18:27:58 +00:00
|
|
|
dest: "{{ matrix_systemd_path }}/matrix-coturn.service"
|
2018-05-25 18:58:53 +00:00
|
|
|
mode: 0644
|
2021-01-14 21:23:46 +00:00
|
|
|
register: matrix_coturn_systemd_service_change_results
|
2019-03-03 09:55:15 +00:00
|
|
|
|
2019-03-19 08:24:39 +00:00
|
|
|
# This may be unnecessary when more long-lived certificates are used.
|
|
|
|
# We optimize for the common use-case though (short-lived Let's Encrypt certificates).
|
|
|
|
# Reloading doesn't hurt anyway, so there's no need to make this more flexible.
|
2021-01-14 21:23:46 +00:00
|
|
|
- name: Ensure reloading systemd units installed, if necessary
|
2020-09-06 07:49:19 +00:00
|
|
|
template:
|
2021-01-14 21:23:46 +00:00
|
|
|
src: "{{ role_path }}/templates/systemd/{{ item }}.j2"
|
|
|
|
dest: "{{ matrix_systemd_path }}/{{ item }}"
|
2020-09-06 07:49:19 +00:00
|
|
|
mode: 0644
|
2021-01-14 21:23:46 +00:00
|
|
|
register: "matrix_coturn_systemd_service_change_results"
|
2021-01-14 20:11:38 +00:00
|
|
|
when: "matrix_coturn_tls_enabled|bool"
|
2021-01-14 21:23:46 +00:00
|
|
|
with_items:
|
|
|
|
- matrix-coturn-reload.service
|
|
|
|
- matrix-coturn-reload.timer
|
2019-01-16 16:05:48 +00:00
|
|
|
|
2021-01-14 20:11:38 +00:00
|
|
|
# A similar task exists in `setup_uninstall.yml`
|
2021-01-14 21:23:46 +00:00
|
|
|
- name: Ensure reloading systemd units uninstalled, if unnecessary
|
2020-09-06 07:49:19 +00:00
|
|
|
file:
|
2021-01-14 21:23:46 +00:00
|
|
|
path: "{{ item }}"
|
2019-03-19 08:24:39 +00:00
|
|
|
state: absent
|
2021-01-14 21:23:46 +00:00
|
|
|
register: "matrix_coturn_systemd_service_change_results"
|
2021-01-14 20:11:38 +00:00
|
|
|
when: "not matrix_coturn_tls_enabled|bool"
|
2021-01-14 21:23:46 +00:00
|
|
|
with_items:
|
|
|
|
- matrix-coturn-reload.service
|
|
|
|
- matrix-coturn-reload.timer
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded if systemd units changed
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
|
|
|
when: "matrix_coturn_systemd_service_change_results.changed"
|