File tree Expand file tree Collapse file tree
roles/sap_netweaver_preconfigure/tasks Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939
4040- name : Set filename prefix to empty string if role is run in normal mode
4141 ansible.builtin.set_fact :
42- assert_prefix : " "
42+ __sap_netweaver_preconfigure_fact_assert_filename_prefix : " "
4343 when : not sap_netweaver_preconfigure_assert | d(false)
4444
4545- name : Prepend filename with assert string if role is run in assert mode
4646 ansible.builtin.set_fact :
47- assert_prefix : " assert-"
47+ __sap_netweaver_preconfigure_fact_assert_filename_prefix : " assert-"
4848 when : sap_netweaver_preconfigure_assert | d(false)
4949
5050
5151- name : Include tasks from 'installation.yml'
52- ansible.builtin.include_tasks : ' {{ item }}/{{ assert_prefix }}installation.yml'
52+ ansible.builtin.include_tasks : ' {{ item }}/{{ __sap_netweaver_preconfigure_fact_assert_filename_prefix }}installation.yml'
5353 when : sap_netweaver_preconfigure_config_all|d(true) or sap_netweaver_preconfigure_installation|d(false)
5454 with_first_found :
5555 - ' {{ ansible_distribution.split("_")[0] }}'
5656 - ' {{ ansible_distribution }}'
5757
5858- name : Include tasks from 'configuration.yml'
59- ansible.builtin.include_tasks : ' {{ item }}/{{ assert_prefix }}configuration.yml'
59+ ansible.builtin.include_tasks : ' {{ item }}/{{ __sap_netweaver_preconfigure_fact_assert_filename_prefix }}configuration.yml'
6060 when : sap_netweaver_preconfigure_config_all|d(true) or sap_netweaver_preconfigure_configuration|d(false)
6161 with_first_found :
6262 - ' {{ ansible_distribution.split("_")[0] }}'
You can’t perform that action at this time.
0 commit comments