wget au lieu de get_url

This commit is contained in:
Yacine31
2023-02-22 19:14:28 +01:00
parent 81577da51c
commit 33d71188f7
2 changed files with 43 additions and 28 deletions

View File

@@ -11,26 +11,36 @@
# validate_certs: no
# tags: download_sw
# - name: Téléchargement OPatch
# become: yes
# get_url:
# url : https://kutt.axiome.io/opatch
# dest: /u01/sources/{{opatch_file}}
# mode: 0755
# group: oinstall
# checksum: sha256:1d5f9b244a12f24efa16f851107f7b62426f10aa303ebb878928db6a8ca95a73
# validate_certs: no
# owner: oracle
# timeout: 120
# tags: download_opatch
- name: Téléchargement OPatch
become: yes
get_url:
url : https://kutt.axiome.io/opatch
dest: /u01/sources/{{opatch_file}}
mode: 0755
group: oinstall
checksum: sha256:1d5f9b244a12f24efa16f851107f7b62426f10aa303ebb878928db6a8ca95a73
validate_certs: no
owner: oracle
shell: wget --no-check-certificate https://kutt.axiome.io/opatch -O /u01/sources/{{opatch_file}}
tags: download_opatch
# - name: Téléchargement du PSU
# become: yes
# get_url:
# url: https://kutt.axiome.io/db_ru
# dest: /u01/sources/{{psu_file}}
# mode: 0755
# group: oinstall
# owner: oracle
# checksum: sha256:8628ba2ecc6a9d45e803e213eefafa2234cbd4e0e4a14c17bc46168bc7e155c8
# validate_certs: no
# timeout: 600
# tags: download_sw
- name: Téléchargement du PSU
become: yes
get_url:
url: https://kutt.axiome.io/db_ru
dest: /u01/sources/{{psu_file}}
mode: 0755
group: oinstall
owner: oracle
checksum: sha256:8628ba2ecc6a9d45e803e213eefafa2234cbd4e0e4a14c17bc46168bc7e155c8
validate_certs: no
tags: download_sw
shell: wget --no-check-certificate https://kutt.axiome.io/db_ru -O /u01/sources/{{psu_file}}
tags: download_ru

View File

@@ -31,17 +31,22 @@
tags: checkifexists
- name: Téléchargement des binaires Oracle
become: yes
get_url:
url: https://kutt.axiome.io/m7EQg2p
dest: /u01/sources/{{oracle_zip_filename}}
mode: 0755
group: oinstall
owner: oracle
checksum: sha256:ba8329c757133da313ed3b6d7f86c5ac42cd9970a28bf2e6233f3235233aa8d8
validate_certs: no
shell: wget --no-check-certificate https://kutt.axiome.io/m7EQg2p -O /u01/sources/{{oracle_zip_filename}}
tags: download_sw
# - name: Téléchargement des binaires Oracle
# become: yes
# get_url:
# url: https://kutt.axiome.io/m7EQg2p
# dest: /u01/sources/{{oracle_zip_filename}}
# mode: 0755
# group: oinstall
# owner: oracle
# checksum: sha256:ba8329c757133da313ed3b6d7f86c5ac42cd9970a28bf2e6233f3235233aa8d8
# validate_certs: no
# timeout: 600
# tags: download_sw
#
- name: Extraction des binaires Oracle
unarchive: src={{ oracle_sources }}/{{ oracle_zip_filename }} dest={{ oracle_home }}
become: true