mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-03-26 06:27:23 +00:00
Replace hardcoded restart_necessary: true with computed values for: conduit, continuwuity, dendrite, element-call, media-repo, appservice-kakaotalk, and wechat. Each role now registers results from config, support files, systemd service, and docker image pull tasks, then computes a restart_necessary variable from their combined .changed state. group_vars/matrix_servers is updated to reference these variables instead of hardcoding true. For dendrite, the systemd service template was also separated out of the combined support-files with_items loop so it can be independently tracked. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
78 lines
3.1 KiB
YAML
78 lines
3.1 KiB
YAML
# SPDX-FileCopyrightText: 2025 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Ensure continuwuity config path exists
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_continuwuity_config_path }}"
|
|
state: directory
|
|
mode: '0750'
|
|
owner: "{{ matrix_user_name }}"
|
|
group: "{{ matrix_group_name }}"
|
|
|
|
- name: Ensure continuwuity data path exists
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_continuwuity_data_path }}"
|
|
state: directory
|
|
mode: '0770'
|
|
owner: "{{ matrix_user_name }}"
|
|
group: "{{ matrix_group_name }}"
|
|
|
|
- name: Ensure continuwuity configuration installed
|
|
ansible.builtin.template:
|
|
src: "{{ matrix_continuwuity_template_continuwuity_config }}"
|
|
dest: "{{ matrix_continuwuity_config_path }}/continuwuity.toml"
|
|
mode: '0644'
|
|
owner: "{{ matrix_user_name }}"
|
|
group: "{{ matrix_group_name }}"
|
|
register: matrix_continuwuity_config_result
|
|
|
|
- name: Ensure continuwuity support files installed
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/{{ item }}.j2"
|
|
dest: "{{ matrix_continuwuity_base_path }}/{{ item }}"
|
|
mode: '0640'
|
|
owner: "{{ matrix_user_name }}"
|
|
group: "{{ matrix_group_name }}"
|
|
with_items:
|
|
- labels
|
|
- env
|
|
register: matrix_continuwuity_support_files_result
|
|
|
|
- name: Ensure continuwuity container network is created
|
|
community.general.docker_network:
|
|
enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}"
|
|
name: "{{ matrix_continuwuity_container_network }}"
|
|
driver: bridge
|
|
driver_options: "{{ devture_systemd_docker_base_container_networks_driver_options }}"
|
|
|
|
- name: Ensure continuwuity container image is pulled
|
|
community.docker.docker_image:
|
|
name: "{{ matrix_continuwuity_container_image }}"
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
force_source: "{{ matrix_continuwuity_container_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_continuwuity_container_image_force_pull }}"
|
|
register: matrix_continuwuity_container_image_pull_result
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
|
until: matrix_continuwuity_container_image_pull_result is not failed
|
|
|
|
- name: Ensure matrix-continuwuity.service installed
|
|
ansible.builtin.template:
|
|
src: "{{ role_path }}/templates/systemd/matrix-continuwuity.service.j2"
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-continuwuity.service"
|
|
mode: '0644'
|
|
register: matrix_continuwuity_systemd_service_result
|
|
|
|
- name: Determine whether continuwuity needs a restart
|
|
ansible.builtin.set_fact:
|
|
matrix_continuwuity_restart_necessary: >-
|
|
{{
|
|
matrix_continuwuity_config_result.changed | default(false)
|
|
or matrix_continuwuity_support_files_result.changed | default(false)
|
|
or matrix_continuwuity_systemd_service_result.changed | default(false)
|
|
or matrix_continuwuity_container_image_pull_result.changed | default(false)
|
|
}}
|