|
|
|
@@ -23,10 +23,10 @@ |
|
|
|
lineinfile: |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:" |
|
|
|
line: "{{ item.key }}: {{ item.value }}" |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_logo': '{{ awx_matrix_client_element_welcome_logo }}' |
|
|
|
'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 ) |
|
|
|
|
|
|
|
- name: Remove custom logo locally on AWX if not defined |
|
|
|
@@ -42,10 +42,10 @@ |
|
|
|
lineinfile: |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:" |
|
|
|
line: "{{ item.key }}: {{ item.value }}" |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_logo_link': '{{ awx_matrix_client_element_welcome_logo_link }}' |
|
|
|
'matrix_client_element_welcome_logo_link': "'{{ awx_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 ) |
|
|
|
|
|
|
|
- name: Remove custom logo link locally on AWX if not defined |
|
|
|
@@ -61,10 +61,10 @@ |
|
|
|
lineinfile: |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:" |
|
|
|
line: "{{ item.key }}: {{ item.value }}" |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_headline': '{{ awx_matrix_client_element_welcome_headline }}' |
|
|
|
'matrix_client_element_welcome_headline': "'{{ awx_matrix_client_element_welcome_headline }}'" |
|
|
|
when: awx_matrix_client_element_welcome_headline | trim | length > 0 |
|
|
|
|
|
|
|
- name: Remove custom headline locally on AWX if not defined |
|
|
|
@@ -80,10 +80,10 @@ |
|
|
|
lineinfile: |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:" |
|
|
|
line: "{{ item.key }}: {{ item.value }}" |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_welcome_text': '{{ awx_matrix_client_element_welcome_text }}' |
|
|
|
'matrix_client_element_welcome_text': "'{{ awx_matrix_client_element_welcome_text }}'" |
|
|
|
when: awx_matrix_client_element_welcome_text | trim | length > 0 |
|
|
|
|
|
|
|
- name: Remove custom text locally on AWX if not defined |
|
|
|
@@ -99,10 +99,10 @@ |
|
|
|
lineinfile: |
|
|
|
path: '{{ awx_cached_matrix_vars }}' |
|
|
|
regexp: "^#? *{{ item.key | regex_escape() }}:" |
|
|
|
line: "{{ item.key }}: {{ item.value }}" |
|
|
|
line: "{{ item.key }}: '{{ item.value }}'" |
|
|
|
insertafter: '# Element Settings Start' |
|
|
|
with_dict: |
|
|
|
'matrix_client_element_branding_welcomeBackgroundUrl': '{{ matrix_client_element_branding_welcomeBackgroundUrl }}' |
|
|
|
'matrix_client_element_branding_welcomeBackgroundUrl': "'{{ matrix_client_element_branding_welcomeBackgroundUrl }}'" |
|
|
|
when: ( awx_https_string in matrix_client_element_branding_welcomeBackgroundUrl ) and ( matrix_client_element_branding_welcomeBackgroundUrl | length > 0 ) |
|
|
|
|
|
|
|
- name: Save new 'Configure Element' survey.json to the AWX tower, template |
|
|
|
|