Skip to content

Commit 2d36bf1

Browse files
author
Suguru Hirahara
committed
Fix capitalization: heisenbridge → Heisenbridge
Signed-off-by: Suguru Hirahara <[email protected]>
1 parent e77b14a commit 2d36bf1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

roles/custom/matrix-bridge-heisenbridge/defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# heisenbridge is a bouncer-style Matrix IRC bridge
2+
# Heisenbridge is a bouncer-style Matrix IRC bridge
33
# Project source code URL: https://github.com/hifi/heisenbridge
44

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

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

roles/custom/matrix-bridge-heisenbridge/tasks/setup_install.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

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

14-
- name: Ensure heisenbridge paths exist
14+
- name: Ensure Heisenbridge paths exist
1515
ansible.builtin.file:
1616
path: "{{ item }}"
1717
state: directory
@@ -21,15 +21,15 @@
2121
with_items:
2222
- "{{ matrix_heisenbridge_base_path }}"
2323

24-
- name: Ensure heisenbridge registration.yaml installed if provided
24+
- name: Ensure Heisenbridge registration.yaml installed if provided
2525
ansible.builtin.copy:
2626
content: "{{ matrix_heisenbridge_registration | to_nice_yaml(indent=2, width=999999) }}"
2727
dest: "{{ matrix_heisenbridge_base_path }}/registration.yaml"
2828
mode: 0644
2929
owner: "{{ matrix_user_username }}"
3030
group: "{{ matrix_user_groupname }}"
3131

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

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

roles/custom/matrix-bridge-heisenbridge/tasks/validate_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

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

0 commit comments

Comments
 (0)