Skip to content

Commit 676ba70

Browse files
update element section
1 parent 53f4b84 commit 676ba70

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

roles/matrix-awx/tasks/set_variables_element.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'matrix_client_element_default_theme': '{{ matrix_client_element_default_theme }}'
1414
'matrix_client_element_registration_enabled': '{{ matrix_client_element_registration_enabled }}'
1515

16-
- name: Record Synapse Custom variables locally on AWX
16+
- name: Record Element-Web custom variables locally on AWX
1717
delegate_to: 127.0.0.1
1818
lineinfile:
1919
path: '{{ awx_cached_matrix_vars }}'
@@ -28,7 +28,7 @@
2828
'awx_matrix_client_element_welcome_headline': '{{ awx_matrix_client_element_welcome_headline }}'
2929
'awx_matrix_client_element_welcome_text': '{{ awx_matrix_client_element_welcome_text }}'
3030

31-
- name: Set custom branding locally on AWX
31+
- name: Set Element-Web custom branding locally on AWX
3232
delegate_to: 127.0.0.1
3333
lineinfile:
3434
path: '{{ awx_cached_matrix_vars }}'
@@ -38,7 +38,7 @@
3838
with_dict:
3939
'matrix_client_element_brand': "{{ awx_matrix_client_element_brand }}"
4040

41-
- name: Remove custom branding locally on AWX if not defined
41+
- name: Remove Element-Web custom branding locally on AWX if not defined
4242
delegate_to: 127.0.0.1
4343
lineinfile:
4444
path: '{{ awx_cached_matrix_vars }}'
@@ -50,7 +50,7 @@
5050
set_fact:
5151
awx_https_string: "https"
5252

53-
- name: Set custom logo locally on AWX if defined
53+
- name: Set Element-Web custom logo locally on AWX if defined
5454
delegate_to: 127.0.0.1
5555
lineinfile:
5656
path: '{{ awx_cached_matrix_vars }}'
@@ -61,15 +61,15 @@
6161
'matrix_client_element_welcome_logo': '{{ awx_matrix_client_element_welcome_logo }}'
6262
when: ( awx_https_string in awx_matrix_client_element_welcome_logo ) and ( awx_matrix_client_element_welcome_logo | trim | length > 0 )
6363

64-
- name: Remove custom logo locally on AWX if not defined
64+
- name: Remove Element-Web custom logo locally on AWX if not defined
6565
delegate_to: 127.0.0.1
6666
lineinfile:
6767
path: '{{ awx_cached_matrix_vars }}'
6868
regexp: "^matrix_client_element_welcome_logo: "
6969
state: absent
7070
when: awx_matrix_client_element_welcome_logo | trim | length == 0
7171

72-
- name: Set custom logo link locally on AWX if defined
72+
- name: Set Element-Web custom logo link locally on AWX if defined
7373
delegate_to: 127.0.0.1
7474
lineinfile:
7575
path: '{{ awx_cached_matrix_vars }}'
@@ -80,15 +80,15 @@
8080
'matrix_client_element_welcome_logo_link': '{{ matrix_client_element_welcome_logo_link }}'
8181
when: ( awx_https_string in awx_matrix_client_element_welcome_logo_link ) and ( awx_matrix_client_element_welcome_logo_link | trim | length > 0 )
8282

83-
- name: Remove custom logo link locally on AWX if not defined
83+
- name: Remove Element-Web custom logo link locally on AWX if not defined
8484
delegate_to: 127.0.0.1
8585
lineinfile:
8686
path: '{{ awx_cached_matrix_vars }}'
8787
regexp: "^matrix_client_element_welcome_logo_link: "
8888
state: absent
8989
when: awx_matrix_client_element_welcome_logo_link | trim | length == 0
9090

91-
- name: Set custom headline locally on AWX if defined
91+
- name: Set Element-Web custom headline locally on AWX if defined
9292
delegate_to: 127.0.0.1
9393
lineinfile:
9494
path: '{{ awx_cached_matrix_vars }}'
@@ -99,15 +99,15 @@
9999
'matrix_client_element_welcome_headline': '{{ awx_matrix_client_element_welcome_headline }}'
100100
when: awx_matrix_client_element_welcome_headline | trim | length > 0
101101

102-
- name: Remove custom headline locally on AWX if not defined
102+
- name: Remove Element-Web custom headline locally on AWX if not defined
103103
delegate_to: 127.0.0.1
104104
lineinfile:
105105
path: '{{ awx_cached_matrix_vars }}'
106106
regexp: "^matrix_client_element_welcome_headline: "
107107
state: absent
108108
when: awx_matrix_client_element_welcome_headline | trim | length == 0
109109

110-
- name: Set custom text locally on AWX if defined
110+
- name: Set Element-Web custom text locally on AWX if defined
111111
delegate_to: 127.0.0.1
112112
lineinfile:
113113
path: '{{ awx_cached_matrix_vars }}'
@@ -118,15 +118,15 @@
118118
'matrix_client_element_welcome_text': '{{ awx_matrix_client_element_welcome_text }}'
119119
when: awx_matrix_client_element_welcome_text | trim | length > 0
120120

121-
- name: Remove custom text locally on AWX if not defined
121+
- name: Remove Element-Web custom text locally on AWX if not defined
122122
delegate_to: 127.0.0.1
123123
lineinfile:
124124
path: '{{ awx_cached_matrix_vars }}'
125125
regexp: "^matrix_client_element_welcome_text: "
126126
state: absent
127127
when: awx_matrix_client_element_welcome_text | trim | length == 0
128128

129-
- name: Set element-web background locally on AWX if defined
129+
- name: Set Element-Web background locally on AWX if defined
130130
delegate_to: 127.0.0.1
131131
lineinfile:
132132
path: '{{ awx_cached_matrix_vars }}'
@@ -137,7 +137,7 @@
137137
'matrix_client_element_branding_welcomeBackgroundUrl': '{{ awx_matrix_client_element_branding_welcomeBackgroundUrl }}'
138138
when: awx_matrix_client_element_branding_welcomeBackgroundUrl | trim | length > 0
139139

140-
- name: Remove element-web background locally on AWX if not defined
140+
- name: Remove Element-Web background locally on AWX if not defined
141141
delegate_to: 127.0.0.1
142142
lineinfile:
143143
path: '{{ awx_cached_matrix_vars }}'

0 commit comments

Comments
 (0)