File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
roles/oradb_manage_db/templates Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ bugfixes :
3+ - " oradb_manage_db: Bugfix listener.ora for multiple Instances on 1 host (#275)"
Original file line number Diff line number Diff line change 3030{% - endif %}
3131
3232{# config_sid_list is used as a helper. jinja2 doesn't allow the exposing of variables from inside a loop to outside before version 2.10! #}
33- {% - set config_sid_list = 0 %}
33+ {% - set config_sid_list = namespace ( created = False ) %}
3434{# The following loop is executed only once for the header 'SID_LIST_... #}
35- {% - for testsid in oracle_databases if testsid .listener_name is defined and testsid .listener_name == lsnrinst .listener_name and config_sid_list == 0 %}
36- {% - set config_sid_list = 1 %}
35+ {% - for testsid in oracle_databases if testsid .listener_name is defined and testsid .listener_name == lsnrinst .listener_name and not config_sid_list . created %}
36+ {% - set config_sid_list . created = True - %}
3737
3838SID_LIST_{{ lsnrinst.listener_name }} =
3939 (SID_LIST =
You can’t perform that action at this time.
0 commit comments