File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
roles/oraswgi_install/tasks Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ bugfixes :
3+ - ' oraswgi_install: fixed wrong script task to shell (#261)'
Original file line number Diff line number Diff line change 162162 # do not start root.sh on all nodes in parallel
163163 # => sleep
164164 - name : install_home_gi | Run root script after installation (Other Nodes)
165- ansible.builtin.script : |
166- /usr/bin/ sleep {{ item.0 * 60 }}
165+ ansible.builtin.shell : |
166+ sleep {{ item.0 * 60 }}
167167 {{ oracle_home_gi }}/root.sh
168+ args :
169+ executable : /usr/bin/bash
168170 become : true
169171 with_indexed_items : " {{ groups[hostgroup] }}"
170172 tags :
Original file line number Diff line number Diff line change 162162 # do not start root.sh on all nodes in parallel
163163 # => sleep
164164 - name : install_home_gi | Run root script after installation (Other Nodes)
165- ansible.builtin.script : |
166- /usr/bin/ sleep {{ item.0 * 60 }}
165+ ansible.builtin.shell : |
166+ sleep {{ item.0 * 60 }}
167167 {{ oracle_home_gi }}/root.sh
168+ args :
169+ executable : /usr/bin/bash
168170 become : true
169171 with_indexed_items : " {{ groups[hostgroup] }}"
170172 tags :
You can’t perform that action at this time.
0 commit comments