|
|
|
@@ -12,6 +12,10 @@ |
|
|
|
'matrix_client_element_jitsi_preferredDomain': 'jitsi.{{ matrix_domain }}' |
|
|
|
'matrix_client_element_default_theme': '{{ matrix_client_element_default_theme }}' |
|
|
|
'matrix_client_element_registration_enabled': '{{ matrix_client_element_registration_enabled }}' |
|
|
|
'matrix_client_element_brand': '{{ matrix_client_element_brand }}' |
|
|
|
'matrix_client_element_branding_welcomeBackgroundUrl:' '{{ matrix_client_element_branding_welcomeBackgroundUrl }}' |
|
|
|
'matrix_client_element_welcome_logo': '{{ matrix_client_element_welcome_logo }}' |
|
|
|
'matrix_client_element_welcome_logo_link': '{{ matrix_client_element_welcome_logo_link }}' |
|
|
|
|
|
|
|
- name: Record Element-Web custom variables locally on AWX |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
@@ -21,10 +25,6 @@ |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertbefore: '# Element Settings End' |
|
|
|
with_dict: |
|
|
|
'awx_matrix_client_element_brand': '{{ awx_matrix_client_element_brand }}' |
|
|
|
'awx_matrix_client_element_branding_welcomeBackgroundUrl:' '{{ awx_matrix_client_element_branding_welcomeBackgroundUrl }}' |
|
|
|
'awx_matrix_client_element_welcome_logo': '{{ awx_matrix_client_element_welcome_logo }}' |
|
|
|
'awx_matrix_client_element_welcome_logo_link': '{{ awx_matrix_client_element_welcome_logo_link }}' |
|
|
|
'awx_matrix_client_element_welcome_headline': '{{ awx_matrix_client_element_welcome_headline }}' |
|
|
|
'awx_matrix_client_element_welcome_text': '{{ awx_matrix_client_element_welcome_text }}' |
|
|
|
|
|
|
|
@@ -36,7 +36,8 @@ |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_brand': "{{ awx_matrix_client_element_brand }}" |
|
|
|
'matrix_client_element_brand': "{{ matrix_client_element_brand }}" |
|
|
|
when: matrix_client_element_brand | trim | length > 0 |
|
|
|
|
|
|
|
- name: Remove Element-Web custom branding locally on AWX if not defined |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
@@ -44,7 +45,7 @@ |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^matrix_client_element_brand: " |
|
|
|
state: absent |
|
|
|
when: awx_matrix_client_element_brand | trim | length == 0 |
|
|
|
when: matrix_client_element_brand | trim | length == 0 |
|
|
|
|
|
|
|
- name: Set fact for 'https' string |
|
|
|
set_fact: |
|
|
|
@@ -58,8 +59,8 @@ |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_logo': '{{ awx_matrix_client_element_welcome_logo }}' |
|
|
|
when: ( awx_https_string in awx_matrix_client_element_welcome_logo ) and ( awx_matrix_client_element_welcome_logo | trim | length > 0 ) |
|
|
|
'matrix_client_element_welcome_logo': '{{ matrix_client_element_welcome_logo }}' |
|
|
|
when: ( awx_https_string in matrix_client_element_welcome_logo ) and ( matrix_client_element_welcome_logo | trim | length > 0 ) |
|
|
|
|
|
|
|
- name: Remove Element-Web custom logo locally on AWX if not defined |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
@@ -67,7 +68,7 @@ |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^matrix_client_element_welcome_logo: " |
|
|
|
state: absent |
|
|
|
when: awx_matrix_client_element_welcome_logo | trim | length == 0 |
|
|
|
when: matrix_client_element_welcome_logo | trim | length == 0 |
|
|
|
|
|
|
|
- name: Set Element-Web custom logo link locally on AWX if defined |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
@@ -78,7 +79,7 @@ |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_logo_link': '{{ matrix_client_element_welcome_logo_link }}' |
|
|
|
when: ( awx_https_string in awx_matrix_client_element_welcome_logo_link ) and ( awx_matrix_client_element_welcome_logo_link | trim | length > 0 ) |
|
|
|
when: ( awx_https_string in matrix_client_element_welcome_logo_link ) and ( matrix_client_element_welcome_logo_link | trim | length > 0 ) |
|
|
|
|
|
|
|
- name: Remove Element-Web custom logo link locally on AWX if not defined |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
@@ -86,7 +87,7 @@ |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^matrix_client_element_welcome_logo_link: " |
|
|
|
state: absent |
|
|
|
when: awx_matrix_client_element_welcome_logo_link | trim | length == 0 |
|
|
|
when: matrix_client_element_welcome_logo_link | trim | length == 0 |
|
|
|
|
|
|
|
- name: Set Element-Web custom headline locally on AWX if defined |
|
|
|
delegate_to: 127.0.0.1 |
|
|
|
|