2018-05-25 18:58:53 +00:00
|
|
|
---
|
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
#
|
|
|
|
# Tasks related to setting up Coturn
|
|
|
|
#
|
2018-05-25 18:58:53 +00:00
|
|
|
|
2020-03-07 23:24:00 +00:00
|
|
|
- name: Ensure Matrix Coturn path exists
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
|
|
|
with_items:
|
|
|
|
- { src: "{{ matrix_docker_coturn_src_files_path }}", when: "{{ matrix_coturn_self_build }}"}
|
|
|
|
when: matrix_riot_web_enabled|bool
|
|
|
|
|
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 }}"
|
2020-03-07 23:24:00 +00:00
|
|
|
when: matrix_coturn_enabled|bool and not matrix_coturn_self_build
|
2020-02-19 21:18:17 +00:00
|
|
|
|
2020-03-07 23:24:00 +00:00
|
|
|
- name: Ensure Coturn repository is present on self-build
|
2020-02-19 21:18:17 +00:00
|
|
|
git:
|
|
|
|
repo: https://github.com/instrumentisto/coturn-docker-image.git
|
|
|
|
dest: "{{ matrix_docker_coturn_src_files_path }}"
|
|
|
|
version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
2020-03-07 23:24:00 +00:00
|
|
|
when: "matrix_coturn_enabled|bool and matrix_coturn_self_build"
|
2020-02-19 21:18:17 +00:00
|
|
|
|
2020-03-07 23:24:00 +00:00
|
|
|
- name: Ensure Coturn Docker image is build
|
2020-02-19 21:18:17 +00:00
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_coturn_docker_image }}"
|
|
|
|
source: build
|
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_docker_coturn_src_files_path }}"
|
|
|
|
pull: yes
|
2020-03-07 23:24:00 +00:00
|
|
|
when: "matrix_coturn_enabled|bool and matrix_coturn_self_build"
|
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 }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2019-05-21 15:25:59 +00:00
|
|
|
when: matrix_coturn_enabled|bool
|
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
|
2019-05-21 15:25:59 +00:00
|
|
|
when: matrix_coturn_enabled|bool
|
2018-05-25 18:58:53 +00:00
|
|
|
|
2019-03-18 15:36:00 +00:00
|
|
|
# `docker_network` doesn't work as expected when the given network
|
|
|
|
# is a substring of a network that already exists.
|
|
|
|
#
|
|
|
|
# See our other comments in `roles/matrix-base/tasks/setup_matrix_base.yml`
|
|
|
|
- name: Check existence of Coturn network in Docker
|
|
|
|
shell:
|
|
|
|
cmd: "docker network ls -q --filter='name=^{{ matrix_coturn_docker_network }}$'"
|
|
|
|
register: matrix_coturn_result_docker_network
|
|
|
|
changed_when: false
|
2019-05-21 15:25:59 +00:00
|
|
|
when: matrix_coturn_enabled|bool
|
2019-09-17 20:16:31 +00:00
|
|
|
check_mode: no
|
2019-03-18 15:36:00 +00:00
|
|
|
|
|
|
|
- name: Create Coturn network in Docker
|
|
|
|
shell:
|
|
|
|
cmd: "docker network create --driver=bridge {{ matrix_coturn_docker_network }}"
|
2019-09-17 20:16:31 +00:00
|
|
|
when: "matrix_coturn_enabled|bool and matrix_coturn_result_docker_network.stdout == '' and not ansible_check_mode"
|
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"
|
|
|
|
dest: "/etc/systemd/system/matrix-coturn.service"
|
|
|
|
mode: 0644
|
2019-03-03 09:55:15 +00:00
|
|
|
register: matrix_coturn_systemd_service_result
|
2019-05-21 15:25:59 +00:00
|
|
|
when: matrix_coturn_enabled|bool
|
2018-05-25 18:58:53 +00:00
|
|
|
|
2019-03-03 09:55:15 +00:00
|
|
|
- name: Ensure systemd reloaded after matrix-coturn.service installation
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "matrix_coturn_enabled|bool and matrix_coturn_systemd_service_result.changed"
|
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.
|
|
|
|
- name: Ensure periodic reloading of matrix-coturn is configured for SSL renewal (matrix-coturn-reload)
|
|
|
|
cron:
|
|
|
|
user: root
|
|
|
|
cron_file: matrix-coturn-ssl-reload
|
|
|
|
name: matrix-coturn-ssl-reload
|
|
|
|
state: present
|
2019-05-21 15:37:05 +00:00
|
|
|
hour: "4"
|
|
|
|
minute: "20"
|
2019-03-19 08:24:39 +00:00
|
|
|
day: "*/5"
|
|
|
|
job: /bin/systemctl reload matrix-coturn.service
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "matrix_coturn_enabled|bool and matrix_coturn_tls_enabled|bool"
|
2019-03-19 08:24:39 +00:00
|
|
|
|
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
#
|
|
|
|
# Tasks related to getting rid of Coturn (if it was previously enabled)
|
|
|
|
#
|
|
|
|
|
2019-03-19 08:24:39 +00:00
|
|
|
- name: Ensure matrix-coturn-ssl-reload cronjob removed
|
|
|
|
cron:
|
|
|
|
user: root
|
|
|
|
cron_file: matrix-coturn-ssl-reload
|
|
|
|
state: absent
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool or not matrix_coturn_tls_enabled|bool"
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
- name: Check existence of matrix-coturn service
|
|
|
|
stat:
|
|
|
|
path: "/etc/systemd/system/matrix-coturn.service"
|
|
|
|
register: matrix_coturn_service_stat
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool"
|
2019-01-16 16:05:48 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-coturn is stopped
|
|
|
|
service:
|
|
|
|
name: matrix-coturn
|
|
|
|
state: stopped
|
|
|
|
daemon_reload: yes
|
|
|
|
register: stopping_result
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool and matrix_coturn_service_stat.stat.exists"
|
2019-01-16 16:05:48 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-coturn.service doesn't exist
|
|
|
|
file:
|
|
|
|
path: "/etc/systemd/system/matrix-coturn.service"
|
|
|
|
state: absent
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool and matrix_coturn_service_stat.stat.exists"
|
2019-01-16 16:05:48 +00:00
|
|
|
|
2019-03-03 09:55:15 +00:00
|
|
|
- name: Ensure systemd reloaded after matrix-coturn.service removal
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool and matrix_coturn_service_stat.stat.exists"
|
2019-03-03 09:55:15 +00:00
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
- name: Ensure Matrix coturn paths don't exist
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_coturn_base_path }}"
|
|
|
|
state: absent
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool"
|
2019-01-16 16:05:48 +00:00
|
|
|
|
|
|
|
- name: Ensure coturn Docker image doesn't exist
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_coturn_docker_image }}"
|
|
|
|
state: absent
|
2019-05-21 15:25:59 +00:00
|
|
|
when: "not matrix_coturn_enabled|bool"
|