ソースを参照

Rename variable for consistency (matrix_homeserver_proxy_ident -> matrix_homeserver_proxy_identifier)

pull/3093/head
Slavi Pantaleev 2年前
コミット
fce84a2b3c
5個のファイルの変更10行の追加10行の削除
  1. +2
    -2
      group_vars/matrix_servers
  2. +2
    -2
      roles/custom/matrix-homeserver-proxy/defaults/main.yml
  3. +1
    -1
      roles/custom/matrix-homeserver-proxy/tasks/install.yml
  4. +3
    -3
      roles/custom/matrix-homeserver-proxy/tasks/uninstall.yml
  5. +2
    -2
      roles/custom/matrix-homeserver-proxy/vars/main.yml

+ 2
- 2
group_vars/matrix_servers ファイルの表示

@@ -191,7 +191,7 @@ matrix_homeserver_app_service_config_files_auto: |

matrix_addons_homeserver_container_network: "{{ matrix_homeserver_proxy_container_network if matrix_homeserver_proxy_enabled else matrix_homeserver_container_network }}"
matrix_addons_homeserver_client_api_url: "{{ matrix_homeserver_proxy_client_api_url if matrix_homeserver_proxy_enabled else matrix_homeserver_container_url }}"
matrix_addons_homeserver_systemd_services_list: "{{ ([matrix_homeserver_proxy_ident + '.service']) if matrix_homeserver_proxy_enabled else matrix_homeserver_systemd_services_list }}"
matrix_addons_homeserver_systemd_services_list: "{{ ([matrix_homeserver_proxy_identifier + '.service']) if matrix_homeserver_proxy_enabled else matrix_homeserver_systemd_services_list }}"

# Starting from version `0.6.0` conduit natively supports some sync v3 (sliding-sync) features.
matrix_homeserver_sliding_sync_url: "{{ matrix_sliding_sync_base_url if matrix_sliding_sync_enabled else (matrix_homeserver_url if matrix_homeserver_implementation in ['conduit'] else '') }}"
@@ -361,7 +361,7 @@ devture_systemd_service_manager_services_list_auto: |
+
(matrix_ssl_renewal_systemd_units_list | selectattr('applicable') | selectattr('enableable') | list )
+
([{'name': (matrix_homeserver_proxy_ident + '.service'), 'priority': 3000, 'groups': ['matrix', 'reverse-proxies']}] if matrix_homeserver_proxy_enabled else [])
([{'name': (matrix_homeserver_proxy_identifier + '.service'), 'priority': 3000, 'groups': ['matrix', 'reverse-proxies']}] if matrix_homeserver_proxy_enabled else [])
+
([{'name': (ntfy_identifier + '.service'), 'priority': 800, 'groups': ['matrix', 'ntfy']}] if ntfy_enabled else [])
+


+ 2
- 2
roles/custom/matrix-homeserver-proxy/defaults/main.yml ファイルの表示

@@ -31,7 +31,7 @@

matrix_homeserver_proxy_enabled: true

matrix_homeserver_proxy_ident: matrix-homeserver-proxy
matrix_homeserver_proxy_identifier: matrix-homeserver-proxy

# renovate: datasource=docker depName=nginx
matrix_homeserver_proxy_version: 1.25.3-alpine
@@ -112,7 +112,7 @@ matrix_homeserver_proxy_send_timeout: 60
# We point it to the internal Docker resolver, which likely delegates to nameservers defined in `/etc/resolv.conf`.
matrix_homeserver_proxy_http_level_resolver: 127.0.0.11

matrix_homeserver_proxy_hostname: "{{ matrix_homeserver_proxy_ident }}"
matrix_homeserver_proxy_hostname: "{{ matrix_homeserver_proxy_identifier }}"

# matrix_homeserver_proxy_client_api_addr specifies the address where the Client-Server API is
matrix_homeserver_proxy_client_api_addr: ''


+ 1
- 1
roles/custom/matrix-homeserver-proxy/tasks/install.yml ファイルの表示

@@ -45,5 +45,5 @@
- name: Ensure Matrix Homeserver Proxy systemd service is installed
ansible.builtin.template:
src: "{{ role_path }}/templates/systemd/matrix-homeserver-proxy.service.j2"
dest: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_ident }}.service"
dest: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_identifier }}.service"
mode: 0644

+ 3
- 3
roles/custom/matrix-homeserver-proxy/tasks/uninstall.yml ファイルの表示

@@ -2,21 +2,21 @@

- name: Check existence of Matrix Homeserver Proxy systemd service
ansible.builtin.stat:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_ident }}.service"
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_identifier }}.service"
register: matrix_homeserver_proxy_service_stat

- when: matrix_homeserver_proxy_service_stat.stat.exists | bool
block:
- name: Ensure Matrix Homeserver Proxy systemd service is stopped
ansible.builtin.service:
name: "{{ matrix_homeserver_proxy_ident }}"
name: "{{ matrix_homeserver_proxy_identifier }}"
state: stopped
enabled: false
daemon_reload: true

- name: Ensure Matrix Homeserver Proxy systemd service doesn't exist
ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_ident }}.service"
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ matrix_homeserver_proxy_identifier }}.service"
state: absent

- name: Ensure Matrix Homeserver Proxy directory is deleted


+ 2
- 2
roles/custom/matrix-homeserver-proxy/vars/main.yml ファイルの表示

@@ -1,4 +1,4 @@
---
matrix_homeserver_proxy_client_api_url: "http://{{ matrix_homeserver_proxy_ident }}:8008"
matrix_homeserver_proxy_client_api_url: "http://{{ matrix_homeserver_proxy_identifier }}:8008"

matrix_homeserver_proxy_federation_api_url: "http://{{ matrix_homeserver_proxy_ident }}:8048"
matrix_homeserver_proxy_federation_api_url: "http://{{ matrix_homeserver_proxy_identifier }}:8048"

読み込み中…
キャンセル
保存