2026-06-28 19:28:39

This commit is contained in:
2026-06-28 21:28:40 +02:00
parent 6979efd308
commit 42efb600ca
7 changed files with 958 additions and 15 deletions
@@ -125,17 +125,6 @@
state: absent
when: opatch_zip is defined
- name: Source oraenv and display OPatch informations
shell: |
. oraenv <<< {{ oracle_sid }} && $ORACLE_HOME/OPatch/opatch version && echo && echo && $ORACLE_HOME/OPatch/opatch lspatches
register: opatch_output
when: oracle_sid is defined
- name: Display OPatch output
debug:
var: opatch_output.stdout_lines
when: oracle_sid is defined
- name: Remove /app/oracle/staging_area if present
file:
path: /app/oracle/staging_area
@@ -255,3 +244,14 @@
state: directory
mode: '0755'
- name: Source oraenv and display OPatch informations (after OH patch)
shell: |
. oraenv <<< {{ oracle_sid }} && $ORACLE_HOME/OPatch/opatch version && echo && echo && $ORACLE_HOME/OPatch/opatch lspatches
register: opatch_output
when: oracle_sid is defined
- name: Display OPatch output (after OH patch)
debug:
var: opatch_output.stdout_lines
when: oracle_sid is defined