Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelogs/fragments/apex_sw_local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
minor_changes:
- "oraapex: Added missing option to copy source from remote or local host (oravirt#512)"
2 changes: 1 addition & 1 deletion roles/oraapex/tasks/loop_databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
ansible.builtin.unarchive:
src: "{{ oracle_sw_source_local }}/{{ _oraapex_archive }}"
dest: "{{ _oraapex_homedir }}"
copy: true
remote_src: "{{ not is_sw_source_local | bool }}"
creates: "{{ _oraapex_homedir }}/META-INF"

- name: loop_databases | install APEX in PDB
Expand Down
4 changes: 2 additions & 2 deletions roles/oraapex/tasks/loop_databases_patching.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
ansible.builtin.unarchive:
src: "{{ oracle_sw_source_local }}/{{ _oraapex_patch_archive }}"
dest: "{{ _oraapex_homedir }}"
copy: true
remote_src: "{{ not is_sw_source_local | bool }}"
include: >-
{{ apex_loop.apex_patchid }}/README.txt

Expand Down Expand Up @@ -90,7 +90,7 @@
ansible.builtin.unarchive:
src: "{{ oracle_sw_source_local }}/{{ _oraapex_patch_archive }}"
dest: "{{ _oraapex_homedir }}"
copy: true
remote_src: "{{ not is_sw_source_local | bool }}"
creates: "{{ _oraapex_homedir }}/{{ apex_loop.apex_patchid }}/catpatch.sql"

- name: loop_databases_patching | copy APEX Patch into APEX installation
Expand Down
Loading