mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-09-24 00:30:10 +00:00
The ownership repair added in e5b8de8c2 is not sufficient on every Ansible privilege-escalation setup. Git may still see a different effective owner after the checkout has been recursively chowned, as demonstrated by #5065.
Pass an exact, task-scoped safe.directory setting to all 56 server-side git tasks. Keep the ownership repair as well, because it remains necessary for filesystem permissions. The two controller-side theme checkouts already use the same protection.
64 lines
2.6 KiB
YAML
64 lines
2.6 KiB
YAML
# SPDX-FileCopyrightText: 2019 - 2023 Slavi Pantaleev
|
|
# SPDX-FileCopyrightText: 2019 Michael Haak
|
|
# SPDX-FileCopyrightText: 2020 Christian Wolf
|
|
# SPDX-FileCopyrightText: 2022 Aaron Raimist
|
|
# SPDX-FileCopyrightText: 2022 Marko Weltzer
|
|
# SPDX-FileCopyrightText: 2022 Sebastian Gumprich
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Fail if Synapse Simple Antispam blocked homeservers is not set
|
|
ansible.builtin.fail:
|
|
msg: "Synapse Simple Antispam is enabled, but no blocked homeservers have been set in matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers"
|
|
when: "matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers | length == 0"
|
|
|
|
- name: Ensure git installed
|
|
ansible.builtin.package:
|
|
name: git
|
|
state: present
|
|
|
|
# A checkout owned by a different user (a uid change, an earlier clone by another user, etc.) would make the git task below fail on ownership or permissions.
|
|
- name: Ensure synapse-simple-antispam repository ownership is correct
|
|
ansible.builtin.file:
|
|
path: "{{ matrix_synapse_ext_path }}/synapse-simple-antispam"
|
|
state: directory
|
|
owner: "{{ matrix_synapse_uid }}"
|
|
group: "{{ matrix_synapse_gid }}"
|
|
recurse: true
|
|
|
|
- name: Clone synapse-simple-antispam git repository
|
|
ansible.builtin.git:
|
|
repo: "{{ matrix_synapse_ext_spam_checker_synapse_simple_antispam_git_repository_url }}"
|
|
version: "{{ matrix_synapse_ext_spam_checker_synapse_simple_antispam_git_version }}"
|
|
dest: "{{ matrix_synapse_ext_path }}/synapse-simple-antispam"
|
|
force: "yes"
|
|
become: true
|
|
become_user: "{{ matrix_synapse_username }}"
|
|
# Keep this even though the task above normalizes ownership. Git may still see an ownership mismatch when Ansible becomes an unprivileged user (see #5065).
|
|
environment:
|
|
GIT_CONFIG_COUNT: "1"
|
|
GIT_CONFIG_KEY_0: safe.directory
|
|
GIT_CONFIG_VALUE_0: "{{ matrix_synapse_ext_path }}/synapse-simple-antispam"
|
|
|
|
- ansible.builtin.set_fact:
|
|
matrix_synapse_modules: >
|
|
{{
|
|
matrix_synapse_modules
|
|
+
|
|
[{
|
|
"module": "synapse_simple_antispam.AntiSpamInvites",
|
|
"config": {
|
|
"blocked_homeservers": matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers
|
|
}
|
|
}]
|
|
}}
|
|
|
|
matrix_synapse_container_extra_arguments: >
|
|
{{
|
|
matrix_synapse_container_extra_arguments | default([])
|
|
+
|
|
["--mount type=bind,src=" + matrix_synapse_ext_path + "/synapse-simple-antispam/synapse_simple_antispam,dst=" + matrix_synapse_in_container_python_packages_path + "/synapse_simple_antispam,ro"]
|
|
}}
|