add oracle instant client ansible role

This commit is contained in:
aaron
2021-08-24 13:29:46 +02:00
parent 3c13cd9cd8
commit f6127f262d
13 changed files with 291 additions and 0 deletions

8
tasks/fetch.yaml Normal file
View File

@@ -0,0 +1,8 @@
---
- name: fetch oracle instant client artifacts
get_url:
url: "{{ oic_package_base_url }}/{{ item.pkg_name }}"
dest: "{{ oic_package_dest }}"
checksum: "{{ item.pkg_hash }}"
loop: "{{ oic_install_packages }}"