mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-09 12:55:20 +00:00
8e63f12fbe
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
19 lines
725 B
YAML
19 lines
725 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Download synapse-v2.rules
|
|
ansible.builtin.get_url:
|
|
url: "{{ matrix_prometheus_services_connect_synapse_rules_download_src_url }}"
|
|
dest: "{{ matrix_prometheus_services_connect_synapse_rules_download_dir_path }}/synapse-v2.rules"
|
|
force: true
|
|
mode: 0440
|
|
owner: "{{ matrix_prometheus_services_connect_synapse_rules_download_owner }}"
|
|
group: "{{ matrix_prometheus_services_connect_synapse_rules_download_group }}"
|
|
register: result
|
|
retries: "{{ devture_playbook_help_geturl_retries_count }}"
|
|
delay: "{{ devture_playbook_help_geturl_retries_delay }}"
|
|
until: result is not failed
|