Просмотр исходного кода

Fix capitalization: heisenbridge → Heisenbridge

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3685/head
Suguru Hirahara 1 год назад
Родитель
Сommit
2d36bf17d5
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: E4F9743DAB4B7B75
3 измененных файлов: 8 добавлений и 8 удалений
  1. +2
    -2
      roles/custom/matrix-bridge-heisenbridge/defaults/main.yml
  2. +5
    -5
      roles/custom/matrix-bridge-heisenbridge/tasks/setup_install.yml
  3. +1
    -1
      roles/custom/matrix-bridge-heisenbridge/tasks/validate_config.yml

+ 2
- 2
roles/custom/matrix-bridge-heisenbridge/defaults/main.yml Просмотреть файл

@@ -1,5 +1,5 @@
---
# heisenbridge is a bouncer-style Matrix IRC bridge
# Heisenbridge is a bouncer-style Matrix IRC bridge
# Project source code URL: https://github.com/hifi/heisenbridge

matrix_heisenbridge_enabled: true
@@ -93,7 +93,7 @@ matrix_heisenbridge_registration_yaml_heisenbridge:
displayname: "{{ matrix_heisenbridge_config_displayname }}"

# Default registration file consumed by both the homeserver and Heisenbridge.
# Besides registration information, it contains configuration (see the heisenbridge key).
# Besides registration information, it contains configuration (see the Heisenbridge key).
matrix_heisenbridge_registration_yaml:
id: heisenbridge
url: http://matrix-heisenbridge:9898


+ 5
- 5
roles/custom/matrix-bridge-heisenbridge/tasks/setup_install.yml Просмотреть файл

@@ -1,6 +1,6 @@
---

- name: Ensure heisenbridge image is pulled
- name: Ensure Heisenbridge image is pulled
community.docker.docker_image:
name: "{{ matrix_heisenbridge_docker_image }}"
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
@@ -11,7 +11,7 @@
delay: "{{ devture_playbook_help_container_retries_delay }}"
until: result is not failed

- name: Ensure heisenbridge paths exist
- name: Ensure Heisenbridge paths exist
ansible.builtin.file:
path: "{{ item }}"
state: directory
@@ -21,7 +21,7 @@
with_items:
- "{{ matrix_heisenbridge_base_path }}"

- name: Ensure heisenbridge registration.yaml installed if provided
- name: Ensure Heisenbridge registration.yaml installed if provided
ansible.builtin.copy:
content: "{{ matrix_heisenbridge_registration | to_nice_yaml(indent=2, width=999999) }}"
dest: "{{ matrix_heisenbridge_base_path }}/registration.yaml"
@@ -29,7 +29,7 @@
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"

- name: Ensure heisenbridge support files installed
- name: Ensure Heisenbridge support files installed
ansible.builtin.template:
src: "{{ role_path }}/templates/{{ item }}.j2"
dest: "{{ matrix_heisenbridge_base_path }}/{{ item }}"
@@ -39,7 +39,7 @@
with_items:
- labels

- name: Ensure heisenbridge container network is created
- name: Ensure Heisenbridge container network is created
community.general.docker_network:
enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}"
name: "{{ matrix_heisenbridge_container_network }}"


+ 1
- 1
roles/custom/matrix-bridge-heisenbridge/tasks/validate_config.yml Просмотреть файл

@@ -1,6 +1,6 @@
---

- name: Fail if required heisenbridge settings not defined
- name: Fail if required Heisenbridge settings not defined
ansible.builtin.fail:
msg: >-
You need to define a required configuration setting (`{{ item.name }}`).


Загрузка…
Отмена
Сохранить