File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ bugfixes :
3+ - " orahost_meta: Added default for oracle_install_option_gi to limit dependency to other roles ()"
Original file line number Diff line number Diff line change 66 block :
77 - name : assert orasw_meta_cluster_hostgroup (GI enabled)
88 when :
9- - oracle_install_option_gi == 'CRS_CONFIG'
9+ - oracle_install_option_gi | default('') == 'CRS_CONFIG'
1010 block :
1111 - name : assert orasw_meta_cluster_hostgroup
1212 ansible.builtin.assert :
Original file line number Diff line number Diff line change 99 ansible.builtin.set_fact :
1010 _orasw_meta_primary_node : true
1111 when :
12- - oracle_install_option_gi != 'CRS_CONFIG'
12+ - oracle_install_option_gi | default('') != 'CRS_CONFIG'
1313
1414# RAC:
1515# 1st Node:
2020 ansible.builtin.set_fact :
2121 _orasw_meta_primary_node : " {{ groups[orasw_meta_cluster_hostgroup][0] == inventory_hostname }}"
2222 when :
23- - oracle_install_option_gi == 'CRS_CONFIG'
23+ - oracle_install_option_gi | default('') == 'CRS_CONFIG'
2424
2525# ## Determine kernel.panic according to Doc ID 2821641.1
2626# kdump state cannot savely be retrieved from service_facts
You can’t perform that action at this time.
0 commit comments