Skip to content

Commit be0ca44

Browse files
committed
oraapex: Added missing option to copy source from remote or local host
1 parent d1c121a commit be0ca44

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
minor_changes:
3+
- "oraapex: Added missing option to copy source from remote or local host (oravirt#512)"

roles/oraapex/tasks/loop_databases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
ansible.builtin.unarchive:
4040
src: "{{ oracle_sw_source_local }}/{{ _oraapex_archive }}"
4141
dest: "{{ _oraapex_homedir }}"
42-
copy: true
42+
remote_src: "{{ not is_sw_source_local | bool }}"
4343
creates: "{{ _oraapex_homedir }}/META-INF"
4444

4545
- name: loop_databases | install APEX in PDB

roles/oraapex/tasks/loop_databases_patching.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
ansible.builtin.unarchive:
4848
src: "{{ oracle_sw_source_local }}/{{ _oraapex_patch_archive }}"
4949
dest: "{{ _oraapex_homedir }}"
50-
copy: true
50+
remote_src: "{{ not is_sw_source_local | bool }}"
5151
include: >-
5252
{{ apex_loop.apex_patchid }}/README.txt
5353
@@ -90,7 +90,7 @@
9090
ansible.builtin.unarchive:
9191
src: "{{ oracle_sw_source_local }}/{{ _oraapex_patch_archive }}"
9292
dest: "{{ _oraapex_homedir }}"
93-
copy: true
93+
remote_src: "{{ not is_sw_source_local | bool }}"
9494
creates: "{{ _oraapex_homedir }}/{{ apex_loop.apex_patchid }}/catpatch.sql"
9595

9696
- name: loop_databases_patching | copy APEX Patch into APEX installation

0 commit comments

Comments
 (0)